Mercurial > hg-stable
diff mercurial/phases.py @ 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 | b9c7ac405757 |
children | 52dc2b33d0be |
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