mercurial/phases.py
branchstable
changeset 15948 536856769512
parent 15946 b9c7ac405757
child 15953 52dc2b33d0be
--- 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