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

More work on roundtripping support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
            (_, text_parent) = self.change_scanner.find_last_change_revision(path, commit_parent)
70
70
            if text_parent not in text_parents:
71
71
                text_parents.append(text_parent)
72
 
        return [(file_id,
 
72
        return tuple([(file_id,
73
73
            self.change_scanner.repository.lookup_foreign_revision_id(p)) for p
74
 
            in text_parents]
 
74
            in text_parents])
75
75
 
76
76
    def get_parent_map(self, keys):
77
77
        ret = {}