aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/flow.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2014-09-04 00:10:01 +0200
committerMaximilian Hils <git@maximilianhils.com>2014-09-04 00:10:01 +0200
commit649e63ff3c868397f493e1dabdc1c63d572aedd8 (patch)
treed95b10ebd35576f620d08eeab472e7d4fbf878db /libmproxy/flow.py
parentb0cfeff06d9dd99a16dfae19c5df3c73c5864fb9 (diff)
downloadmitmproxy-649e63ff3c868397f493e1dabdc1c63d572aedd8.tar.gz
mitmproxy-649e63ff3c868397f493e1dabdc1c63d572aedd8.tar.bz2
mitmproxy-649e63ff3c868397f493e1dabdc1c63d572aedd8.zip
fix some leftovers
Diffstat (limited to 'libmproxy/flow.py')
-rw-r--r--libmproxy/flow.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py
index eb183d9f..df72878f 100644
--- a/libmproxy/flow.py
+++ b/libmproxy/flow.py
@@ -183,8 +183,7 @@ class ClientPlaybackState:
"""
if self.flows and not self.current:
n = self.flows.pop(0)
- n.request.reply = controller.DummyReply()
- n.client_conn = None
+ n.reply = controller.DummyReply()
self.current = master.handle_request(n)
if not testing and not self.current.response:
master.replay_request(self.current) # pragma: no cover