summaryrefslogtreecommitdiff
path: root/processors
diff options
context:
space:
mode:
authorIan Clatworthy <ian.clatworthy@canonical.com>2009-02-18 23:52:28 +1000
committerIan Clatworthy <ian.clatworthy@canonical.com>2009-02-18 23:52:28 +1000
commitd5f4c3cddd74467ebd352a33e3b212325b389e73 (patch)
tree0add901584569b4b4c8c7494e61045de0f1878fb /processors
parent7b2a41318a1681b0c36a4c2d9f0027160705df61 (diff)
parentf2708c22cebf314dab28896e00f5dcea7cdbdad7 (diff)
downloadbzr-fastimport-d5f4c3cddd74467ebd352a33e3b212325b389e73.tar.gz
fast-export command replacing bzr-fast-export script
Diffstat (limited to 'processors')
-rw-r--r--processors/generic_processor.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/processors/generic_processor.py b/processors/generic_processor.py
index bfd3d63..55ef262 100644
--- a/processors/generic_processor.py
+++ b/processors/generic_processor.py
@@ -124,9 +124,9 @@ class GenericProcessor(processor.ImportProcessor):
self.inventory_cache_size)
if self.params.get("import-marks") is not None:
- mark_map = marks_file.import_marks(self.params.get("import-marks"))
- if mark_map is not None:
- self.cache_mgr.revision_ids = mark_map
+ mark_info = marks_file.import_marks(self.params.get("import-marks"))
+ if mark_info is not None:
+ self.cache_mgr.revision_ids = mark_info[0]
self.skip_total = False
self.first_incremental_commit = True
else: