##// END OF EJS Templates
i18n: fix "% inside _()" problem
FUJIWARA Katsunori -
r21096:a45ed365 default
parent child Browse files
Show More
@@ -732,8 +732,8 b' def overrideclone(orig, ui, source, dest'
732 732 d = hg.defaultdest(source)
733 733 if opts.get('all_largefiles') and not hg.islocal(d):
734 734 raise util.Abort(_(
735 '--all-largefiles is incompatible with non-local destination %s' %
736 d))
735 '--all-largefiles is incompatible with non-local destination %s') %
736 d)
737 737
738 738 return orig(ui, source, dest, **opts)
739 739
General Comments 0
You need to be logged in to leave comments. Login now