/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 contrib/convert_to_1.9.py

  • Committer: Jelmer Vernooij
  • Date: 2017-02-05 16:17:03 UTC
  • mto: (6621.2.1 py3)
  • mto: This revision was merged to the branch mainline in revision 6624.
  • Revision ID: jelmer@jelmer.uk-20170205161703-le42ds13b6ka1ajn
Require python 2.7.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
    steps_to_revert.append((func, args, kwargs))
15
15
 
16
16
def do_revert():
17
 
    print "** Reverting repository"
 
17
    print("** Reverting repository")
18
18
    for func, args, kwargs in reversed(steps_to_revert):
19
19
        func(*args, **kwargs)
20
20