~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Martin Pool
  • Date: 2006-11-03 01:52:12 UTC
  • mto: This revision was merged to the branch mainline in revision 2119.
  • Revision ID: mbp@sourcefrog.net-20061103015212-1e5f881c2152d79f
Review comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
import bzrlib.errors as errors
36
36
from bzrlib.errors import (InstallFailed,
37
37
                           )
 
38
from bzrlib.trace import mutter
38
39
from bzrlib.progress import ProgressPhase
39
40
from bzrlib.revision import NULL_REVISION
40
41
from bzrlib.symbol_versioning import (deprecated_function,
41
42
        deprecated_method,
42
43
        zero_eight,
43
44
        )
44
 
from bzrlib.trace import mutter
45
 
import bzrlib.ui
46
45
 
47
 
from bzrlib.lazy_import import lazy_import
48
46
 
49
47
# TODO: Avoid repeatedly opening weaves so many times.
50
48