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

Fix merging of copy operations.

Merged from https://code.launchpad.net/~jelmer/brz/merge-copy/+merge/389688

Show diffs side-by-side

added added

removed removed

Lines of Context:
786
786
            elif c[0] == 'parent loop':
787
787
                # TODO(jelmer): This should not make it to here
788
788
                yield TextConflict(fp.get_path(c[2]))
 
789
            elif c[0] == 'path conflict':
 
790
                yield TextConflict(fp.get_path(c[1]))
789
791
            else:
790
792
                raise AssertionError('unknown conflict %s' % c[0])
791
793