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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
from __future__ import absolute_import
20
20
 
21
 
from brzlib import (
 
21
from breezy import (
22
22
    errors,
23
23
    trace,
24
24
    ui,
25
25
    urlutils,
26
26
    )
27
 
from brzlib.controldir import (
 
27
from breezy.controldir import (
28
28
    ControlDir,
29
29
    format_registry,
30
30
    )
31
 
from brzlib.i18n import gettext
32
 
from brzlib.remote import RemoteBzrDir
 
31
from breezy.i18n import gettext
 
32
from breezy.remote import RemoteBzrDir
33
33
 
34
34
 
35
35
class Convert(object):
130
130
    This routine wraps the smart_upgrade() routine with a nicer UI.
131
131
    In particular, it ensures all URLs can be opened before starting
132
132
    and reports a summary at the end if more than one upgrade was attempted.
133
 
    This routine is useful for command line tools. Other brzlib clients
 
133
    This routine is useful for command line tools. Other breezy clients
134
134
    probably ought to use smart_upgrade() instead.
135
135
 
136
136
    :param url: a URL of the locations to upgrade.