/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 breezy/transform.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-30 22:12:58 UTC
  • mfrom: (6973.11.15 python3-j)
  • Revision ID: breezy.the.bot@gmail.com-20180630221258-x0y3tvn1060ntndc
Fix another 1.5k tests on python3.

Merged from https://code.launchpad.net/~jelmer/brz/python3-j/+merge/348346

Show diffs side-by-side

added added

removed removed

Lines of Context:
1452
1452
 
1453
1453
orphaning_registry = registry.Registry()
1454
1454
orphaning_registry.register(
1455
 
    'conflict', refuse_orphan,
 
1455
    u'conflict', refuse_orphan,
1456
1456
    'Leave orphans in place and create a conflict on the directory.')
1457
1457
orphaning_registry.register(
1458
 
    'move', move_orphan,
 
1458
    u'move', move_orphan,
1459
1459
    'Move orphans into the brz-orphans directory.')
1460
1460
orphaning_registry._set_default_key(u'conflict')
1461
1461