diff hgext/hgk.py @ 9467:4c041f1ee1b4

do not attempt to translate ui.debug output
author Martin Geisler <mg@lazybytes.net>
date Sat, 19 Sep 2009 01:15:38 +0200
parents 1a9a650004b6
children 25e572394f5c
line wrap: on
line diff
--- a/hgext/hgk.py	Fri Sep 18 17:37:51 2009 +0200
+++ b/hgext/hgk.py	Sat Sep 19 01:15:38 2009 +0200
@@ -308,7 +308,7 @@
     os.chdir(repo.root)
     optstr = ' '.join(['--%s %s' % (k, v) for k, v in opts.iteritems() if v])
     cmd = ui.config("hgk", "path", "hgk") + " %s %s" % (optstr, " ".join(etc))
-    ui.debug(_("running %s\n") % cmd)
+    ui.debug("running %s\n" % cmd)
     util.system(cmd)
 
 cmdtable = {