/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugins/launchpad/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-22 00:56:52 UTC
  • mfrom: (6621.2.26 py3_pokes)
  • Revision ID: jelmer@jelmer.uk-20170522005652-yjahcr9hwmjkno7n
Merge Python3 porting work ('py3 pokes')

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
# see http://wiki.bazaar.canonical.com/Specs/BranchRegistrationTool
44
44
 
45
 
from breezy import (
 
45
from ... import (
46
46
    branch as _mod_branch,
47
47
    config as _mod_config,
48
48
    lazy_regex,
50
50
    trace,
51
51
    version_info,
52
52
    )
53
 
from breezy.commands import (
 
53
from ...commands import (
54
54
    plugin_cmds,
55
55
    )
56
 
from breezy.directory_service import directories
57
 
from breezy.help_topics import topic_registry
 
56
from ...directory_service import directories
 
57
from ...help_topics import topic_registry
58
58
 
59
59
for klsname, aliases in [
60
60
    ("cmd_register_branch", []),
126
126
                     % (the_branch.base,))
127
127
        return
128
128
    archive, series, project = info
129
 
    from breezy.plugins.launchpad import lp_api_lite
 
129
    from . import lp_api_lite
130
130
    latest_pub = lp_api_lite.LatestPublication(archive, series, project)
131
131
    lp_api_lite.report_freshness(the_branch, verbosity, latest_pub)
132
132