~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/upgrade.py

  • Committer: Jelmer Vernooij
  • Date: 2011-01-11 20:42:32 UTC
  • mto: (5582.12.2 weave-plugin)
  • mto: This revision was merged to the branch mainline in revision 5718.
  • Revision ID: jelmer@samba.org-20110111204232-bagl3rrkys706x8a
More fixes.

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
28
 
from bzrlib.remote import RemoteBzrDir
 
25
from bzrlib.bzrdir import (
 
26
    BzrDir,
 
27
    format_registry,
 
28
    )
 
29
from bzrlib.remote import (
 
30
    RemoteBzrDir,
 
31
    )
29
32
 
30
33
 
31
34
class Convert(object):