Mercurial > hg-stable
changeset 8970:eac360045ba4
convert: do not ask for translation of "%s %s"
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 27 Jun 2009 12:31:41 +0200 |
parents | c3d77d606de5 |
children | a5a1009dd7ed |
files | hgext/convert/common.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/convert/common.py Sat Jun 27 12:21:26 2009 +0200 +++ b/hgext/convert/common.py Sat Jun 27 12:31:41 2009 +0200 @@ -289,7 +289,7 @@ self.ui.warn(_('%s error:\n') % self.command) self.ui.warn(output) msg = util.explain_exit(status)[0] - raise util.Abort(_('%s %s') % (self.command, msg)) + raise util.Abort('%s %s' % (self.command, msg)) def run0(self, cmd, *args, **kwargs): output, status = self.run(cmd, *args, **kwargs)