diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-09-04 00:10:01 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-09-04 00:10:01 +0200 |
commit | 649e63ff3c868397f493e1dabdc1c63d572aedd8 (patch) | |
tree | d95b10ebd35576f620d08eeab472e7d4fbf878db /libmproxy/flow.py | |
parent | b0cfeff06d9dd99a16dfae19c5df3c73c5864fb9 (diff) | |
download | mitmproxy-649e63ff3c868397f493e1dabdc1c63d572aedd8.tar.gz mitmproxy-649e63ff3c868397f493e1dabdc1c63d572aedd8.tar.bz2 mitmproxy-649e63ff3c868397f493e1dabdc1c63d572aedd8.zip |
fix some leftovers
Diffstat (limited to 'libmproxy/flow.py')
-rw-r--r-- | libmproxy/flow.py | 3 |
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 |