Mercurial > public > mercurial-scm > hg-stable
diff mercurial/manifest.py @ 3148:adb246ce6736
fix newline in error message
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Fri, 22 Sep 2006 18:29:04 +0200 |
parents | 1eb50c9d2649 |
children | f3b939444c72 |
line wrap: on
line diff
--- 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