##// END OF EJS Templates
cmdutil: fix untranslatable string in copy
Martin Geisler -
r7894:caef5fdf default
parent child Browse files
Show More
@@ -385,8 +385,10 b' def copy(ui, repo, pats, opts, rename=Fa'
385 385 return True # report a failure
386 386
387 387 if ui.verbose or not exact:
388 action = rename and "moving" or "copying"
389 ui.status(_('%s %s to %s\n') % (action, relsrc, reltarget))
388 if rename:
389 ui.status(_('moving %s to %s\n') % (relsrc, reltarget))
390 else:
391 ui.status(_('copying %s to %s\n') % (relsrc, reltarget))
390 392
391 393 targets[abstarget] = abssrc
392 394
General Comments 0
You need to be logged in to leave comments. Login now