changeset 314:2257bfc01749

hg_delta_editor: missing plaintext paths are svn paths not branch paths
author Patrick Mezard <pmezard@gmail.com>
date Sun, 03 May 2009 21:42:43 -0500
parents 942f198b8ff5
children 963d27a0b1c2
files hg_delta_editor.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hg_delta_editor.py
+++ b/hg_delta_editor.py
@@ -844,7 +844,7 @@ class HgChangeReceiver(delta.Editor):
                 base = 'link ' + base
             self.set_file(svnpath, base, 'x' in fctx.flags(), 'l' in fctx.flags())
         else:
-            self.missing_plaintexts.add(path)
+            self.missing_plaintexts.add(svnpath)
 
     def delete_entry(self, path, revision_bogus, parent_baton, pool=None):
         br_path, branch = self._path_and_branch_for_path(path)