/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/merge.py

Indicate conflicts from merge_lines, insead of guessing

Show diffs side-by-side

added added

removed removed

Lines of Context:
799
799
        and a conflict will be noted.
800
800
        """
801
801
        self._check_file(file_id)
802
 
        lines = list(self._merged_lines(file_id))
803
 
        conflicts = '<<<<<<< TREE\n' in lines
 
802
        lines, conflicts = self._merged_lines(file_id)
804
803
        self.tt.create_file(lines, trans_id)
805
804
        if conflicts:
806
805
            self._raw_conflicts.append(('text conflict', trans_id))