##// END OF EJS Templates
copies: show we can read data from the "first" mapping...
marmoute -
r44222:bbd7172b default
parent child Browse files
Show More
@@ -67,7 +67,7 b' def _chain(a, b):'
67 """chain two sets of copies 'a' and 'b'"""
67 """chain two sets of copies 'a' and 'b'"""
68 t = a.copy()
68 t = a.copy()
69 for k, v in pycompat.iteritems(b):
69 for k, v in pycompat.iteritems(b):
70 t[k] = t.get(v, v)
70 t[k] = a.get(v, v)
71 return t
71 return t
72
72
73
73
General Comments 0
You need to be logged in to leave comments. Login now