/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/lp_directory.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
from urlparse import urlsplit
22
22
import xmlrpclib
23
23
 
24
 
from bzrlib import (
 
24
from breezy import (
25
25
    debug,
26
26
    errors,
27
27
    trace,
28
28
    transport,
29
29
    )
30
 
from bzrlib.i18n import gettext
 
30
from breezy.i18n import gettext
31
31
 
32
 
from bzrlib.plugins.launchpad.lp_registration import (
 
32
from breezy.plugins.launchpad.lp_registration import (
33
33
    LaunchpadService, ResolveLaunchpadPathRequest)
34
 
from bzrlib.plugins.launchpad.account import get_lp_login
35
 
 
36
 
 
37
 
# As bzrlib.transport.remote may not be loaded yet, make sure bzr+ssh
 
34
from breezy.plugins.launchpad.account import get_lp_login
 
35
 
 
36
 
 
37
# As breezy.transport.remote may not be loaded yet, make sure bzr+ssh
38
38
# is counted as a netloc protocol.
39
39
transport.register_urlparse_netloc_protocol('bzr+ssh')
40
40
transport.register_urlparse_netloc_protocol('lp')