~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/upgrade.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-01-12 00:43:17 UTC
  • mfrom: (5582.4.3 presplitoutbzrbranch)
  • Revision ID: pqm@pqm.ubuntu.com-20110112004317-81kxafod33p5lqal
(jelmer) Remove some hardcoded dependencies on weave-era formats in bzrlib
 and clean up more imports. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
from bzrlib import (
21
21
    errors,
22
 
    osutils,
23
 
    repository,
24
22
    trace,
25
23
    ui,
26
24
    )
27
 
from bzrlib.bzrdir import BzrDir, format_registry
 
25
from bzrlib.bzrdir import (
 
26
    BzrDir,
 
27
    format_registry,
 
28
    )
28
29
from bzrlib.remote import RemoteBzrDir
29
30
 
30
31