mercurial/copies.py
changeset 43783 bbd7172bc3df
parent 43782 79750d781928
child 43784 995066c41bb2
--- a/mercurial/copies.py	Wed Nov 13 20:33:22 2019 +0100
+++ b/mercurial/copies.py	Wed Nov 13 20:45:34 2019 +0100
@@ -67,7 +67,7 @@
     """chain two sets of copies 'a' and 'b'"""
     t = a.copy()
     for k, v in pycompat.iteritems(b):
-        t[k] = t.get(v, v)
+        t[k] = a.get(v, v)
     return t