changeset 10539:fc5908d01ed7 stable

url: only mark format string for translation
author Martin Geisler <mg@lazybytes.net>
date Wed, 24 Feb 2010 17:11:37 +0100
parents 5203a324ba73
children dd9d057465c1 167030b1757b
files mercurial/url.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/url.py	Wed Feb 24 09:26:31 2010 +0100
+++ b/mercurial/url.py	Wed Feb 24 17:11:37 2010 +0100
@@ -141,7 +141,7 @@
         config = dict()
         for key, val in self.ui.configitems('auth'):
             if '.' not in key:
-                self.ui.warn(_("ignoring invalid [auth] key '%s'\n" % key))
+                self.ui.warn(_("ignoring invalid [auth] key '%s'\n") % key)
                 continue
             group, setting = key.split('.', 1)
             gdict = config.setdefault(group, dict())