summaryrefslogtreecommitdiff
path: root/bzr_commit_handler.py
diff options
context:
space:
mode:
Diffstat (limited to 'bzr_commit_handler.py')
-rw-r--r--bzr_commit_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bzr_commit_handler.py b/bzr_commit_handler.py
index 72c7807..da0fe26 100644
--- a/bzr_commit_handler.py
+++ b/bzr_commit_handler.py
@@ -113,7 +113,7 @@ class GenericCommitHandler(processor.CommitHandler):
# Convert the parent commit-ids to bzr revision-ids
if parents:
- self.parents = [self.cache_mgr.revision_ids[p]
+ self.parents = [self.cache_mgr.lookup_committish(p)
for p in parents]
else:
self.parents = []