summaryrefslogtreecommitdiff
path: root/revision_store.py
diff options
context:
space:
mode:
authorIan Clatworthy <ian.clatworthy@canonical.com>2009-03-06 21:09:25 +1000
committerIan Clatworthy <ian.clatworthy@canonical.com>2009-03-06 21:09:25 +1000
commitf819ea4d0d678213500c5676e8af0ce527ba6474 (patch)
treec3e7291c5331f5ca87f3779b6a2f8646b159e398 /revision_store.py
parenta549d7d09059a6ab8306f21d8e91b7c5849af03c (diff)
downloadbzr-fastimport-f819ea4d0d678213500c5676e8af0ce527ba6474.tar.gz
fix ie reference in _get_file_lines()
Diffstat (limited to 'revision_store.py')
-rw-r--r--revision_store.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/revision_store.py b/revision_store.py
index 8811bc0..e260be9 100644
--- a/revision_store.py
+++ b/revision_store.py
@@ -208,7 +208,7 @@ class RevisionStore1(AbstractRevisionStore):
def get_file_lines(self, revision_id, file_id):
tx = self.repo.get_transaction()
- w = self.repo.weave_store.get_weave(ie.file_id, tx)
+ w = self.repo.weave_store.get_weave(file_id, tx)
return w.get_lines(revision_id)
def _add_revision(self, rev, inv):