diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-05-26 13:14:57 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-05-26 13:14:57 +1200 |
commit | 08f2a0524ed25a0161e079e4e4d97c032025b830 (patch) | |
tree | 4358ad286edbe80c7b1ead2f7665ee27b002ee7f /mitmproxy/dump.py | |
parent | 23efee981338f8ae66d0161fe12e2a7b3b25d1f2 (diff) | |
download | mitmproxy-08f2a0524ed25a0161e079e4e4d97c032025b830.tar.gz mitmproxy-08f2a0524ed25a0161e079e4e4d97c032025b830.tar.bz2 mitmproxy-08f2a0524ed25a0161e079e4e4d97c032025b830.zip |
Mandate that all handlers must be wrapped, make tests pass
mitmproxy, mitmdump and mitmweb masters still to be done
Diffstat (limited to 'mitmproxy/dump.py')
-rw-r--r-- | mitmproxy/dump.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mitmproxy/dump.py b/mitmproxy/dump.py index f1eabdb8..c43b4c2a 100644 --- a/mitmproxy/dump.py +++ b/mitmproxy/dump.py @@ -6,10 +6,11 @@ import itertools from netlib import tcp from netlib.utils import bytes_to_escaped_str, pretty_size -from . import flow, filt, contentviews +from . import flow, filt, contentviews, controller from .exceptions import ContentViewException, FlowReadException, ScriptException + class DumpError(Exception): pass |