fix newline in error message
authorBenoit Boissinot <benoit.boissinot@ens-lyon.org>
Fri, 22 Sep 2006 18:29:04 +0200
changeset 3148 adb246ce6736
parent 3147 97420a49188d
child 3149 ff1ab08e6732
fix newline in error message
mercurial/manifest.py
--- a/mercurial/manifest.py	Fri Sep 22 17:58:22 2006 +0200
+++ b/mercurial/manifest.py	Fri Sep 22 18:29:04 2006 +0200
@@ -169,7 +169,7 @@
                 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