##// END OF EJS Templates
lfs: fix interpolation of int and %s in an exception case...
Matt Harbison -
r50421:192949b6 stable
parent child Browse files
Show More
@@ -170,7 +170,7 b' class local:'
170 170 # the localstore, because it's not going to match the expected.
171 171 if content_length is not None and int(content_length) != size:
172 172 msg = (
173 b"Response length (%s) does not match Content-Length "
173 b"Response length (%d) does not match Content-Length "
174 174 b"header (%d): likely server-side crash"
175 175 )
176 176 raise LfsRemoteError(_(msg) % (size, int(content_length)))
General Comments 0
You need to be logged in to leave comments. Login now