Mercurial > public > mercurial-scm > hg-stable
diff mercurial/ui.py @ 14708:8083f4d00bd1 stable
i18n: remove translation of debug messages
author | David Soria Parra <dsp@php.net> |
---|---|
date | Tue, 21 Jun 2011 18:35:13 +0200 |
parents | afccc64eea73 |
children | bcc1a9fd0b8c |
line wrap: on
line diff
--- a/mercurial/ui.py Tue Jun 21 15:38:10 2011 +0300 +++ b/mercurial/ui.py Tue Jun 21 18:35:13 2011 +0200 @@ -159,8 +159,8 @@ if self.debugflag and not untrusted and self._reportuntrusted: uvalue = self._ucfg.get(section, name) if uvalue is not None and uvalue != value: - self.debug(_("ignoring untrusted configuration option " - "%s.%s = %s\n") % (section, name, uvalue)) + self.debug("ignoring untrusted configuration option " + "%s.%s = %s\n" % (section, name, uvalue)) return value def configpath(self, section, name, default=None, untrusted=False): @@ -330,8 +330,8 @@ if self.debugflag and not untrusted and self._reportuntrusted: for k, v in self._ucfg.items(section): if self._tcfg.get(section, k) != v: - self.debug(_("ignoring untrusted configuration option " - "%s.%s = %s\n") % (section, k, v)) + self.debug("ignoring untrusted configuration option " + "%s.%s = %s\n" % (section, k, v)) return items def walkconfig(self, untrusted=False):