Mercurial > public > mercurial-scm > hg-stable
diff mercurial/dispatch.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 | b24d596fcd25 |
children | 8a62bae94425 |
line wrap: on
line diff
--- a/mercurial/dispatch.py Tue Jun 21 15:38:10 2011 +0300 +++ b/mercurial/dispatch.py Tue Jun 21 18:35:13 2011 +0200 @@ -267,8 +267,8 @@ elif int(m.groups()[0]) <= len(args): return m.group() else: - ui.debug(_("No argument found for substitution " - "of %i variable in alias '%s' definition.") + ui.debug("No argument found for substitution " + "of %i variable in alias '%s' definition." % (int(m.groups()[0]), self.name)) return '' cmd = re.sub(r'\$(\d+|\$)', _checkvar, self.definition[1:])