phases: do not mark debug message for translation stable
authorWagner Bruna <wbruna@softwareexpress.com.br>
Fri, 20 Jan 2012 13:19:32 -0200
branchstable
changeset 15948 536856769512
parent 15947 bdd1ed80e26e
child 15949 d5edbbf55a75
phases: do not mark debug message for translation
mercurial/phases.py
--- 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