~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-05 11:31:58 UTC
  • mto: This revision was merged to the branch mainline in revision 5757.
  • Revision ID: jelmer@samba.org-20110405113158-jyxg63dywvs843vy
Review feedback from John.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1359
1359
        if orphan_policy is None:
1360
1360
            orphan_policy = default_policy
1361
1361
        if orphan_policy not in orphaning_registry:
1362
 
            trace.warning(
1363
 
                '%s (from %s) is not a known policy, defaulting to %s'
1364
 
                  % (orphan_policy, conf_var_name, default_policy))
 
1362
            trace.warning('%s (from %s) is not a known policy, defaulting '
 
1363
                'to %s' % (orphan_policy, conf_var_name, default_policy))
1365
1364
            orphan_policy = default_policy
1366
1365
        handle_orphan = orphaning_registry.get(orphan_policy)
1367
1366
        handle_orphan(self, trans_id, parent_id)