/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/check.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:
49
49
 
50
50
from __future__ import absolute_import
51
51
 
52
 
from brzlib import (
 
52
from breezy import (
53
53
    errors,
54
54
    ui,
55
55
    )
56
 
from brzlib.branch import Branch
57
 
from brzlib.controldir import ControlDir
58
 
from brzlib.revision import NULL_REVISION
59
 
from brzlib.trace import note
60
 
from brzlib.workingtree import WorkingTree
61
 
from brzlib.i18n import gettext
 
56
from breezy.branch import Branch
 
57
from breezy.controldir import ControlDir
 
58
from breezy.revision import NULL_REVISION
 
59
from breezy.trace import note
 
60
from breezy.workingtree import WorkingTree
 
61
from breezy.i18n import gettext
62
62
 
63
63
class Check(object):
64
64
    """Check a repository"""