The new changes caused an exception when unpacking the tuple, fixed it

This commit is contained in:
byt3bl33d3r 2015-05-23 00:37:08 +02:00
parent 840e202e5b
commit e985d42a8a
3 changed files with 12 additions and 2 deletions

View file

@ -44,7 +44,12 @@ class ProxyPlugins:
_instance = None
plist = []
mthdDict = {"connectionMade": "clientRequest", "handleStatus": "serverResponseStatus", "handleResponse": "serverResponse", "handleHeader": "serverHeaders", "handleEndHeaders":"serverHeaders"}
mthdDict = {"connectionMade": "clientRequest",
"handleStatus": "serverResponseStatus",
"handleResponse": "serverResponse",
"handleHeader": "serverHeaders",
"handleEndHeaders":"serverHeaders"}
pmthds = {}
@staticmethod