##// END OF EJS Templates
url: only mark format string for translation
Martin Geisler -
r10539:fc5908d0 stable
parent child Browse files
Show More
@@ -141,7 +141,7 b' class passwordmgr(urllib2.HTTPPasswordMg'
141 141 config = dict()
142 142 for key, val in self.ui.configitems('auth'):
143 143 if '.' not in key:
144 self.ui.warn(_("ignoring invalid [auth] key '%s'\n" % key))
144 self.ui.warn(_("ignoring invalid [auth] key '%s'\n") % key)
145 145 continue
146 146 group, setting = key.split('.', 1)
147 147 gdict = config.setdefault(group, dict())
General Comments 0
You need to be logged in to leave comments. Login now