##// END OF EJS Templates
Force the content-length header to be a string in httprepo.unbundle....
Thomas Arendsen Hein -
r3566:ca24144e default
parent child Browse files
Show More
@@ -339,7 +339,7 b' class httprepository(remoterepository):'
339 339 try:
340 340 rfp = self.do_cmd(
341 341 'unbundle', data=fp,
342 headers={'content-length': length,
342 headers={'content-length': str(length),
343 343 'content-type': 'application/octet-stream'},
344 344 heads=' '.join(map(hex, heads)))
345 345 try:
General Comments 0
You need to be logged in to leave comments. Login now