aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/flow.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2013-03-18 08:36:56 +1300
committerAldo Cortesi <aldo@nullcube.com>2013-03-18 08:36:56 +1300
commit6614498744a45138adc770ef6e5882366b96b25e (patch)
tree7ab6f5364b96cba1c4f4f11bd0fbf7e24dc39ccc /libmproxy/flow.py
parentd2d3eb6490a6b342f8d205e26d04c913b8e2a5f7 (diff)
downloadmitmproxy-6614498744a45138adc770ef6e5882366b96b25e.tar.gz
mitmproxy-6614498744a45138adc770ef6e5882366b96b25e.tar.bz2
mitmproxy-6614498744a45138adc770ef6e5882366b96b25e.zip
Update styling, GameCenter highscore tutorial.
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 380eb026..d33a3108 100644
--- a/libmproxy/flow.py
+++ b/libmproxy/flow.py
@@ -1309,7 +1309,7 @@ class State(object):
if f.request in self._flow_map:
del self._flow_map[f.request]
self._flow_list.remove(f)
- if f.match(self._limit):
+ if f in self.view:
self.view.remove(f)
return True