X-Git-Url: https://git.distorted.org.uk/~mdw/hippotat/blobdiff_plain/a14782d3bb7fe3e65f19e45d913d2e5f5d8662bb..d5008b7cbaee6052bc6c19b3df6283b9881e7b0a:/hippotat diff --git a/hippotat b/hippotat index 1625628..b8477bb 100755 --- a/hippotat +++ b/hippotat @@ -56,9 +56,10 @@ class ResponseConsumer(GeneralResponseConsumer): self._handleexception() def connectionLost(self, reason): - self._log(DBG.HTTP_CTRL, 'connectionLost ' + str(reason)) + reason_msg = 'connectionLost ' + str(reason) + self._log(DBG.HTTP_CTRL, reason_msg) if not reason.check(twisted.web.client.ResponseDone): - self.latefailure() + self._latefailure(reason_msg) return try: self._log(DBG.HTTP, 'ResponseDone')