diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-10-19 08:25:41 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-10-19 11:40:51 +1300 |
commit | ceb8caee9885e87641755e86b72adc2a73877ce0 (patch) | |
tree | 0c9a9c5630b96c2f8984c3515513e986ccbdc839 /mitmproxy/dump.py | |
parent | 03cb5bb32503d07eda466ab8dd62e750d10d4392 (diff) | |
download | mitmproxy-ceb8caee9885e87641755e86b72adc2a73877ce0.tar.gz mitmproxy-ceb8caee9885e87641755e86b72adc2a73877ce0.tar.bz2 mitmproxy-ceb8caee9885e87641755e86b72adc2a73877ce0.zip |
Web apps to addons
This commit removes the app registry, adds a wsgiapp addon base, and ports the
onboarding app to it.
Diffstat (limited to 'mitmproxy/dump.py')
-rw-r--r-- | mitmproxy/dump.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mitmproxy/dump.py b/mitmproxy/dump.py index d3a66876..bc8716e7 100644 --- a/mitmproxy/dump.py +++ b/mitmproxy/dump.py @@ -61,9 +61,6 @@ class DumpMaster(flow.FlowMaster): self.add_log("Flow file corrupted.", "error") raise DumpError(v) - if self.options.app: - self.start_app(self.options.app_host, self.options.app_port) - def _readflow(self, paths): """ Utitility function that reads a list of flows |