##// END OF EJS Templates
fix newline in error message
Benoit Boissinot -
r3148:adb246ce default
parent child Browse files
Show More
@@ -169,7 +169,7 b' class manifest(revlog):'
169 if start == end and w[1] == 1:
169 if start == end and w[1] == 1:
170 # item we want to delete was not found, error out
170 # item we want to delete was not found, error out
171 raise AssertionError(
171 raise AssertionError(
172 _("failed to remove %s from manifest\n") % f)
172 _("failed to remove %s from manifest") % f)
173 if dstart != None and dstart <= start and dend >= start:
173 if dstart != None and dstart <= start and dend >= start:
174 if dend < end:
174 if dend < end:
175 dend = end
175 dend = end
General Comments 0
You need to be logged in to leave comments. Login now