/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 bzrlib/tests/test_transform.py

  • Committer: Jelmer Vernooij
  • Date: 2017-02-05 15:38:26 UTC
  • mto: (6621.2.1 py3)
  • mto: This revision was merged to the branch mainline in revision 6624.
  • Revision ID: jelmer@jelmer.uk-20170205153826-rnrd0m3iqoizqvrw
Apply 2to3 except fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2455
2455
        mover.rename('c/e', 'c/d')
2456
2456
        try:
2457
2457
            mover.rename('a', 'c')
2458
 
        except errors.FileExists, e:
 
2458
        except errors.FileExists as e:
2459
2459
            mover.rollback()
2460
2460
        self.assertPathExists('a')
2461
2461
        self.assertPathExists('c/d')