# HG changeset patch # User Wagner Bruna # Date 2012-01-20 15:19:32 # Node ID 53685676951202b8b83df1f5e185735228b9e474 # Parent bdd1ed80e26e58b575a56fd84aa1eab63056795e phases: do not mark debug message for translation diff --git a/mercurial/phases.py b/mercurial/phases.py --- a/mercurial/phases.py +++ b/mercurial/phases.py @@ -147,7 +147,7 @@ def filterunknown(repo, phaseroots=None) 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