##// END OF EJS Templates
manifest: improve error message about newlines in filenames...
Greg Ward -
r8077:d051342f default
parent child Browse files
Show More
@@ -125,7 +125,7 b' class manifest(revlog.revlog):'
125 125 for f in l:
126 126 if '\n' in f or '\r' in f:
127 127 raise error.RevlogError(
128 _("'\\n' and '\\r' disallowed in filenames"))
128 _("'\\n' and '\\r' disallowed in filenames: %r") % f)
129 129
130 130 # if we're using the listcache, make sure it is valid and
131 131 # parented by the same node we're diffing against
General Comments 0
You need to be logged in to leave comments. Login now