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

Use standard names for lookup functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        self._repository = repository
41
41
        store = repository._git.object_store
42
42
        assert isinstance(revision_id, str)
43
 
        git_id, self.mapping = repository.lookup_git_revid(revision_id)
 
43
        git_id, self.mapping = repository.lookup_bzr_revision_id(revision_id)
44
44
        try:
45
45
            commit = store[git_id]
46
46
        except KeyError, r: