mercurial/merge.py
changeset 27121 b08c31cfc4b6
parent 27091 2ce00de5cc0e
child 27122 77d760ba8dcd
--- a/mercurial/merge.py	Fri Nov 27 20:23:23 2015 +0100
+++ b/mercurial/merge.py	Mon Nov 23 19:06:15 2015 -0800
@@ -1151,8 +1151,8 @@
     removed += msremoved
 
     extraactions = ms.actions()
-    for a in 'rag':
-        actions[a].extend(extraactions[a])
+    for k, acts in extraactions.iteritems():
+        actions[k].extend(acts)
 
     progress(_updating, None, total=numupdates, unit=_files)