aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/flow.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/flow.py')
-rw-r--r--libmproxy/flow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py
index 50b30fe1..1d15029b 100644
--- a/libmproxy/flow.py
+++ b/libmproxy/flow.py
@@ -827,7 +827,6 @@ class ClientConnect(StateObject):
def __str__(self):
if self.address:
return "%s:%d"%(self.address[0],self.address[1])
- return "None"
def _load_state(self, state):
self.close = True
@@ -934,6 +933,7 @@ class ClientPlaybackState:
"""
if self.flows and not self.current:
n = self.flows.pop(0)
+ n.request.reply = controller.DummyReply()
n.request.client_conn = None
self.current = master.handle_request(n.request)
if not testing and not self.current.response: