# HG changeset patch # User Benoit Boissinot # Date 1158942544 -7200 # Node ID adb246ce6736b01150d44db661c3a9c8ec1cf82e # Parent 97420a49188d328b62308c69f892f468d7a6f8c2 fix newline in error message diff --git a/mercurial/manifest.py b/mercurial/manifest.py --- a/mercurial/manifest.py +++ b/mercurial/manifest.py @@ -169,7 +169,7 @@ class manifest(revlog): if start == end and w[1] == 1: # item we want to delete was not found, error out raise AssertionError( - _("failed to remove %s from manifest\n") % f) + _("failed to remove %s from manifest") % f) if dstart != None and dstart <= start and dend >= start: if dend < end: dend = end