~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

Add WorkingTree.add_conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
390
390
            results = self.tt.apply()
391
391
            self.write_modified(results)
392
392
            try:
393
 
                new_conflicts = (self.cooked_conflicts +
394
 
                                 list(working_tree.conflicts()))
395
 
                working_tree.set_conflicts(ConflictList(new_conflicts))
 
393
                working_tree.add_conflicts(self.cooked_conflicts)
396
394
            except UnsupportedOperation:
397
395
                pass
398
396
        finally: