##// END OF EJS Templates
merge.applyupdates: add all actions returned from merge state...
Siddharth Agarwal -
r27121:b08c31cf default
parent child Browse files
Show More
@@ -1151,8 +1151,8 b' def applyupdates(repo, actions, wctx, mc'
1151 1151 removed += msremoved
1152 1152
1153 1153 extraactions = ms.actions()
1154 for a in 'rag':
1155 actions[a].extend(extraactions[a])
1154 for k, acts in extraactions.iteritems():
1155 actions[k].extend(acts)
1156 1156
1157 1157 progress(_updating, None, total=numupdates, unit=_files)
1158 1158
General Comments 0
You need to be logged in to leave comments. Login now