# HG changeset patch # User Wagner Bruna # Date 1327072772 7200 # Node ID 53685676951202b8b83df1f5e185735228b9e474 # Parent bdd1ed80e26e58b575a56fd84aa1eab63056795e phases: do not mark debug message for translation diff -r bdd1ed80e26e -r 536856769512 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