i18n: fix "% inside _()" problem
authorFUJIWARA Katsunori <foozy@lares.dti.ne.jp>
Wed, 16 Apr 2014 03:05:00 +0900
changeset 21096 a45ed365904a
parent 21095 ec309395aa45
child 21097 e8ef59b351c3
i18n: fix "% inside _()" problem
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)