mercurial/sparse.py
changeset 45466 14b3dbfa4eeb
parent 45372 77b8588dd84e
child 45525 590a840fa367
equal deleted inserted replaced
45465:9bd60ec60601 45466:14b3dbfa4eeb
   397             prunedactions[file] = action
   397             prunedactions[file] = action
   398         elif type == mergestatemod.ACTION_MERGE:
   398         elif type == mergestatemod.ACTION_MERGE:
   399             temporaryfiles.append(file)
   399             temporaryfiles.append(file)
   400             prunedactions[file] = action
   400             prunedactions[file] = action
   401         elif branchmerge:
   401         elif branchmerge:
   402             if type != mergestatemod.ACTION_KEEP:
   402             if type not in mergemod.mergeresult.NO_OP_ACTIONS:
   403                 temporaryfiles.append(file)
   403                 temporaryfiles.append(file)
   404                 prunedactions[file] = action
   404                 prunedactions[file] = action
   405         elif type == mergestatemod.ACTION_FORGET:
   405         elif type == mergestatemod.ACTION_FORGET:
   406             prunedactions[file] = action
   406             prunedactions[file] = action
   407         elif file in wctx:
   407         elif file in wctx: