# HG changeset patch # User Patrick Mezard # Date 1241404963 18000 # Node ID 2257bfc017494d09f97e95e76f0819f3f8d07722 # Parent 942f198b8ff56592878eec5ba6d1f726981809cb hg_delta_editor: missing plaintext paths are svn paths not branch paths diff --git a/hg_delta_editor.py b/hg_delta_editor.py --- 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)