From dbf9b0e5479e842dfeb0ad4e552a0570ff4ea342 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 22 Aug 2017 17:31:46 +0100 Subject: [PATCH] ResponseConsumer: pass resp to superclass constructor (nfc) Signed-off-by: Ian Jackson --- hippotat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hippotat b/hippotat index 997996d..8bcd62f 100755 --- a/hippotat +++ b/hippotat @@ -30,7 +30,7 @@ import twisted.web.client import io class GeneralResponseConsumer(twisted.internet.protocol.Protocol): - def __init__(self, cl, req, desc): + def __init__(self, cl, req, resp, desc): self._cl = cl self._req = req self._desc = desc @@ -43,7 +43,7 @@ class GeneralResponseConsumer(twisted.internet.protocol.Protocol): class ResponseConsumer(GeneralResponseConsumer): def __init__(self, cl, req, resp): - super().__init__(cl, req, 'RC') + super().__init__(cl, req, resp, 'RC') ssddesc = '[%s] %s' % (id(req), self._desc) self._ssd = SlipStreamDecoder(ssddesc, partial(queue_inbound, cl.ipif)) self._log(DBG.HTTP_CTRL, '__init__') @@ -78,7 +78,7 @@ class ResponseConsumer(GeneralResponseConsumer): class ErrorResponseConsumer(GeneralResponseConsumer): def __init__(self, cl, req, resp): - super().__init__(cl, req, 'ERROR-RC') + super().__init__(cl, req, resp, 'ERROR-RC') self._resp = resp self._m = b'' try: -- 2.11.0