~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/check.py

  • Committer: Martin Pool
  • Date: 2010-10-15 10:19:25 UTC
  • mto: This revision was merged to the branch mainline in revision 5503.
  • Revision ID: mbp@sourcefrog.net-20101015101925-qr2m0i5sv6ad0bs2
Superstitious argument quoting in makefile

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
  indicating that the revision was found/not found.
47
47
"""
48
48
 
49
 
from bzrlib import (
50
 
    errors,
51
 
    ui,
52
 
    )
 
49
from bzrlib import errors
53
50
from bzrlib.branch import Branch
54
51
from bzrlib.bzrdir import BzrDir
55
52
from bzrlib.revision import NULL_REVISION
56
53
from bzrlib.symbol_versioning import deprecated_function, deprecated_in
57
54
from bzrlib.trace import note
 
55
import bzrlib.ui
58
56
from bzrlib.workingtree import WorkingTree
59
57
 
60
58
class Check(object):
90
88
        if callback_refs is None:
91
89
            callback_refs = {}
92
90
        self.repository.lock_read()
93
 
        self.progress = ui.ui_factory.nested_progress_bar()
 
91
        self.progress = bzrlib.ui.ui_factory.nested_progress_bar()
94
92
        try:
95
93
            self.progress.update('check', 0, 4)
96
94
            if self.check_repo:
289
287
        """Check all the weaves we can get our hands on.
290
288
        """
291
289
        weave_ids = []
292
 
        storebar = ui.ui_factory.nested_progress_bar()
 
290
        storebar = bzrlib.ui.ui_factory.nested_progress_bar()
293
291
        try:
294
292
            self._check_weaves(storebar)
295
293
        finally: