##// END OF EJS Templates
copies: don't translate untranslatable string
Martin Geisler -
r8337:0e73e21d default
parent child Browse files
Show More
@@ -174,7 +174,7 b' def copies(repo, c1, c2, ca, checkdirs=F'
174 note = ""
174 note = ""
175 if f in copy: note += "*"
175 if f in copy: note += "*"
176 if f in diverge2: note += "!"
176 if f in diverge2: note += "!"
177 repo.ui.debug(_(" %s -> %s %s\n") % (f, fullcopy[f], note))
177 repo.ui.debug(" %s -> %s %s\n" % (f, fullcopy[f], note))
178 del diverge2
178 del diverge2
179
179
180 if not fullcopy or not checkdirs:
180 if not fullcopy or not checkdirs:
General Comments 0
You need to be logged in to leave comments. Login now