Mercurial > hg > mercurial-source
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 (2006-09-22) |
parents | 1eb50c9d2649 |
children | f3b939444c72 |
line wrap: on
line diff
--- a/mercurial/manifest.py +++ b/mercurial/manifest.py @@ -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