diff hgext/mq.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 cd67bfcfabbe
children f3404b7f37ca
line wrap: on
line diff
--- a/hgext/mq.py	Fri Sep 18 17:37:51 2009 +0200
+++ b/hgext/mq.py	Sat Sep 19 01:15:38 2009 +0200
@@ -321,7 +321,7 @@
             if bad:
                 raise util.Abort(bad)
         guards = sorted(set(guards))
-        self.ui.debug(_('active guards: %s\n') % ' '.join(guards))
+        self.ui.debug('active guards: %s\n' % ' '.join(guards))
         self.active_guards = guards
         self.guards_dirty = True