/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 upgrade.py

  • Committer: Jelmer Vernooij
  • Date: 2009-03-19 16:43:56 UTC
  • mto: (0.436.139 foreign)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20090319164356-iwxw3x3ntre7fjxc
Fix formatting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
"""Upgrading revisions made with older versions of the mapping."""
17
17
 
18
 
from bzrlib import ui
 
18
from bzrlib import (
 
19
    trace,
 
20
    ui,
 
21
    )
19
22
from bzrlib.errors import (
20
23
    DependencyNotPresent,
21
24
    BzrError,
22
25
    InvalidRevisionId,
23
26
    NoSuchRevision,
24
27
    )
25
 
from bzrlib.trace import info
26
28
 
27
29
import itertools
28
30
 
325
327
                                                    allow_changes=allow_changes)
326
328
        if verbose:
327
329
            for revid in rebase_todo(repository, plan):
328
 
                info("%s -> %s" % (revid, plan[revid][0]))
 
330
                trace.info("%s -> %s" % (revid, plan[revid][0]))
329
331
        rebase(repository, plan, replay_snapshot)
330
332
        return revid_renames
331
333
    finally: