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