changeset 15948:536856769512 stable

phases: do not mark debug message for translation
author Wagner Bruna <wbruna@softwareexpress.com.br>
date Fri, 20 Jan 2012 13:19:32 -0200
parents bdd1ed80e26e
children d5edbbf55a75
files mercurial/phases.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/phases.py	Fri Jan 20 13:10:01 2012 -0200
+++ b/mercurial/phases.py	Fri Jan 20 13:19:32 2012 -0200
@@ -147,7 +147,7 @@
         missing = [node for node in nodes if node not in nodemap]
         if missing:
             for mnode in missing:
-                msg = _('Removing unknown node %(n)s from %(p)i-phase boundary')
+                msg = 'Removing unknown node %(n)s from %(p)i-phase boundary'
                 repo.ui.debug(msg, {'n': short(mnode), 'p': phase})
             nodes.symmetric_difference_update(missing)
             repo._dirtyphases = True