63
63
return self.merge_message(content)
65
65
# Get a diff. XXX Is this hookable? I thought it was, can't find it
67
67
# right level: we want to identify the changed lines, not have the
69
69
# changed in new version of the file. So for now a direct diff
70
70
# using patiencediff is done.
73
72
needed = [(found_entry.file_id, found_entry.revision, 'new'),
74
73
(found_entry.file_id, old_revision, 'old')]
75
74
contents = self.commit.builder.repository.iter_files_bytes(needed)