[PATCH 1 of 5 STABLE V2] i18n: fix "% inside _()" problem

FUJIWARA Katsunori foozy at lares.dti.ne.jp
Tue Apr 15 18:12:29 UTC 2014


# HG changeset patch
# User FUJIWARA Katsunori <foozy at lares.dti.ne.jp>
# Date 1397585100 -32400
#      Wed Apr 16 03:05:00 2014 +0900
# Branch stable
# Node ID 5ab1c796858b4eff91dd63a6710c288d278ee8c6
# Parent  a0f437e2f5a900fccd7812e66ce27b68a6ac4fad
i18n: fix "% inside _()" problem

diff --git a/hgext/largefiles/overrides.py b/hgext/largefiles/overrides.py
--- a/hgext/largefiles/overrides.py
+++ b/hgext/largefiles/overrides.py
@@ -760,8 +760,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)
 


More information about the Mercurial-devel mailing list