diff mercurial/dispatch.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 96379c93ba6f
children bccf780f78ed
line wrap: on
line diff
--- a/mercurial/dispatch.py	Fri Sep 18 17:37:51 2009 +0200
+++ b/mercurial/dispatch.py	Sat Sep 19 01:15:38 2009 +0200
@@ -214,7 +214,7 @@
 
     def __call__(self, ui, *args, **opts):
         if self.shadows:
-            ui.debug(_("alias '%s' shadows command\n") % self.name)
+            ui.debug("alias '%s' shadows command\n" % self.name)
 
         return self.fn(ui, *args, **opts)