##// END OF EJS Templates
keepalive: fix reference to IncompleteRead
Peter Arrenbrecht -
r7868:2b901f9b default
parent child Browse files
Show More
@@ -408,7 +408,7 b' class HTTPResponse(httplib.HTTPResponse)'
408 # close the connection as protocol synchronisation is
408 # close the connection as protocol synchronisation is
409 # probably lost
409 # probably lost
410 self.close()
410 self.close()
411 raise IncompleteRead(value)
411 raise httplib.IncompleteRead(value)
412 if chunk_left == 0:
412 if chunk_left == 0:
413 break
413 break
414 if amt is None:
414 if amt is None:
General Comments 0
You need to be logged in to leave comments. Login now