# HG changeset patch # User Augie Fackler # Date 1243715724 18000 # Node ID cdb066f41e31655193d5c1751828a3e793e6d801 # Parent 60b84e2d3336ba6c553c3e7ce25e779a4c9e37d7 hg_delta_editor: fix missing-plaintext fetching diff --git a/hgsubversion/hg_delta_editor.py b/hgsubversion/hg_delta_editor.py --- 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()