diff mercurial/hgweb/hgwebdir_mod.py @ 6913:580d5e6bfc1f

move % out of translatable strings The translators need to see the raw format string, not the result of using the format string.
author Martin Geisler <mg@daimi.au.dk>
date Sat, 16 Aug 2008 14:46:56 +0200
parents b77c25c2d6c0
children 2cfdabe235fb
line wrap: on
line diff
--- a/mercurial/hgweb/hgwebdir_mod.py	Tue Aug 12 13:45:48 2008 +0200
+++ b/mercurial/hgweb/hgwebdir_mod.py	Sat Aug 16 14:46:56 2008 +0200
@@ -172,7 +172,7 @@
                 try:
                     u.readconfig(os.path.join(path, '.hg', 'hgrc'))
                 except Exception, e:
-                    u.warn(_('error reading %s/.hg/hgrc: %s\n' % (path, e)))
+                    u.warn(_('error reading %s/.hg/hgrc: %s\n') % (path, e))
                     continue
                 def get(section, name, default=None):
                     return u.config(section, name, default, untrusted=True)