##// END OF EJS Templates
localrepo: do not modify ctx.remove() list in-place
Patrick Mezard -
r12899:fabe6141 stable
parent child Browse files
Show More
@@ -981,7 +981,7 b' class localrepository(repo.repository):'
981 """
981 """
982
982
983 tr = lock = None
983 tr = lock = None
984 removed = ctx.removed()
984 removed = list(ctx.removed())
985 p1, p2 = ctx.p1(), ctx.p2()
985 p1, p2 = ctx.p1(), ctx.p2()
986 m1 = p1.manifest().copy()
986 m1 = p1.manifest().copy()
987 m2 = p2.manifest()
987 m2 = p2.manifest()
General Comments 0
You need to be logged in to leave comments. Login now