Comments
Patch
@@ -824,7 +824,8 @@ def batchget(repo, mctx, actions):
if i > 0:
yield i, f
-def applyupdates(repo, actions, wctx, mctx, overwrite, labels=None):
+def applyupdates(repo, actions, wctx, mctx, branchmerge, overwrite,
+ labels=None):
"""apply the merge action list to the working directory
wctx is the working copy context
@@ -1276,7 +1277,8 @@ def update(repo, node, branchmerge, forc
# note that we're in the middle of an update
repo.vfs.write('updatestate', p2.hex())
- stats = applyupdates(repo, actions, wc, p2, overwrite, labels=labels)
+ stats = applyupdates(repo, actions, wc, p2, branchmerge, overwrite,
+ labels=labels)
# divergent renames
for f, fl in sorted(diverge.iteritems()):