Show More
@@ -984,9 +984,8 b' def cleanupnodes(repo, replacements, ope' | |||
|
984 | 984 | sortfunc = lambda ns: torev(ns[0][0]) |
|
985 | 985 | rels = [] |
|
986 | 986 | for ns, s in sorted(replacements.items(), key=sortfunc): |
|
987 | for n in ns: | |
|
988 | rel = (unfi[n], tuple(unfi[m] for m in s)) | |
|
989 | rels.append(rel) | |
|
987 | rel = (tuple(unfi[n] for n in ns), tuple(unfi[m] for m in s)) | |
|
988 | rels.append(rel) | |
|
990 | 989 | if rels: |
|
991 | 990 | obsolete.createmarkers(repo, rels, operation=operation, |
|
992 | 991 | metadata=metadata) |
General Comments 0
You need to be logged in to leave comments.
Login now