Mercurial > public > mercurial-scm > hg
diff hgext/notify.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 | 9a69ab6d7cf7 |
children | 90ae579924e4 |
line wrap: on
line diff
--- a/hgext/notify.py Fri Sep 18 17:37:51 2009 +0200 +++ b/hgext/notify.py Sat Sep 19 01:15:38 2009 +0200 @@ -276,10 +276,10 @@ ctx = repo[node] if not n.subs: - ui.debug(_('notify: no subscribers to repository %s\n') % n.root) + ui.debug('notify: no subscribers to repository %s\n' % n.root) return if n.skipsource(source): - ui.debug(_('notify: changes have source "%s" - skipping\n') % source) + ui.debug('notify: changes have source "%s" - skipping\n' % source) return ui.pushbuffer()