diff hgext/hgcia.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 b2f37dbc5952
children 25e572394f5c
line wrap: on
line diff
--- a/hgext/hgcia.py	Fri Sep 18 17:37:51 2009 +0200
+++ b/hgext/hgcia.py	Sat Sep 19 01:15:38 2009 +0200
@@ -229,10 +229,10 @@
     n = bin(node)
     cia = hgcia(ui, repo)
     if not cia.user:
-        ui.debug(_('cia: no user specified'))
+        ui.debug('cia: no user specified')
         return
     if not cia.project:
-        ui.debug(_('cia: no project specified'))
+        ui.debug('cia: no project specified')
         return
     if hooktype == 'changegroup':
         start = repo.changelog.rev(n)