changeset 386:cdb066f41e31

hg_delta_editor: fix missing-plaintext fetching
author Augie Fackler <durin42@gmail.com>
date Sat, 30 May 2009 15:35:24 -0500
parents 60b84e2d3336
children f6050c4dde31
files hgsubversion/hg_delta_editor.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/hg_delta_editor.py
+++ b/hgsubversion/hg_delta_editor.py
@@ -916,7 +916,7 @@ class HgChangeReceiver(delta.Editor):
             return
 
         if fpath not in ctx:
-            self.missing_plaintexts.add(svnpath)
+            self.missing_plaintexts.add(path)
 
         fctx = ctx.filectx(fpath)
         base = fctx.data()