mercurial/copies.py
changeset 18878 3cfaace0441e
parent 18362 5a4f220fbfca
child 18899 d8ff607ef721
--- a/mercurial/copies.py	Thu Apr 04 20:36:46 2013 -0700
+++ b/mercurial/copies.py	Thu Apr 04 20:22:29 2013 -0700
@@ -133,11 +133,13 @@
     # we currently don't try to find where old files went, too expensive
     # this means we can miss a case like 'hg rm b; hg cp a b'
     cm = {}
-    for f in b:
-        if f not in a:
-            ofctx = _tracefile(b[f], a)
-            if ofctx:
-                cm[f] = ofctx.path()
+    missing = set(b.manifest().iterkeys())
+    missing.difference_update(a.manifest().iterkeys())
+
+    for f in missing:
+        ofctx = _tracefile(b[f], a)
+        if ofctx:
+            cm[f] = ofctx.path()
 
     # combine copies from dirstate if necessary
     if w is not None: