Show More
@@ -318,7 +318,7 b' def manifestmerge(repo, p1, p2, pa, over' | |||||
318 | return action |
|
318 | return action | |
319 |
|
319 | |||
320 | def actionkey(a): |
|
320 | def actionkey(a): | |
321 |
return a[1] == |
|
321 | return a[1] == "r" and -1 or 0, a | |
322 |
|
322 | |||
323 | def applyupdates(repo, action, wctx, mctx, actx, overwrite): |
|
323 | def applyupdates(repo, action, wctx, mctx, actx, overwrite): | |
324 | """apply the merge action list to the working directory |
|
324 | """apply the merge action list to the working directory | |
@@ -340,7 +340,7 b' def applyupdates(repo, action, wctx, mct' | |||||
340 | # prescan for merges |
|
340 | # prescan for merges | |
341 | for a in action: |
|
341 | for a in action: | |
342 | f, m = a[:2] |
|
342 | f, m = a[:2] | |
343 |
if m == |
|
343 | if m == "m": # merge | |
344 | f2, fd, flags, move = a[2:] |
|
344 | f2, fd, flags, move = a[2:] | |
345 | if f == '.hgsubstate': # merged internally |
|
345 | if f == '.hgsubstate': # merged internally | |
346 | continue |
|
346 | continue |
General Comments 0
You need to be logged in to leave comments.
Login now