##// END OF EJS Templates
record: fix display of non-ASCII names...
Matt Mackall -
r17081:b013baa3 2.2.3 stable
parent child Browse files
Show More
@@ -380,7 +380,7 b' the hunk is left unchanged.'
380 if skipall is None:
380 if skipall is None:
381 h.pretty(ui)
381 h.pretty(ui)
382 msg = (_('examine changes to %s?') %
382 msg = (_('examine changes to %s?') %
383 _(' and ').join(map(repr, h.files())))
383 _(' and ').join("'%s'" % f for f in h.files()))
384 r, skipfile, skipall, np = prompt(skipfile, skipall, msg, None)
384 r, skipfile, skipall, np = prompt(skipfile, skipall, msg, None)
385 if not r:
385 if not r:
386 continue
386 continue
General Comments 0
You need to be logged in to leave comments. Login now