# HG changeset patch # User FUJIWARA Katsunori # Date 1397585100 -32400 # Node ID a45ed365904a2b260c0a63aa3b7e93752fe69761 # Parent ec309395aa45826022396144fb432d52522b4330 i18n: fix "% inside _()" problem diff -r ec309395aa45 -r a45ed365904a hgext/largefiles/overrides.py --- a/hgext/largefiles/overrides.py Sun Apr 13 18:45:43 2014 +0200 +++ b/hgext/largefiles/overrides.py Wed Apr 16 03:05:00 2014 +0900 @@ -732,8 +732,8 @@ d = hg.defaultdest(source) if opts.get('all_largefiles') and not hg.islocal(d): raise util.Abort(_( - '--all-largefiles is incompatible with non-local destination %s' % - d)) + '--all-largefiles is incompatible with non-local destination %s') % + d) return orig(ui, source, dest, **opts)