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

Use standard names for lookup functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
 
117
117
    def commit(self, message):
118
118
        c = Commit()
119
 
        c.parents = [self.repository.lookup_git_revid(revid)[0] for revid in self.parents]
 
119
        c.parents = [self.repository.lookup_bzr_revision_id(revid)[0] for revid in self.parents]
120
120
        c.tree = commit_tree(self.store, 
121
121
                [(path, sha, mode) for (path, (mode, sha)) in self._blobs.iteritems()])
122
122
        c.committer = self._committer