aboutsummaryrefslogtreecommitdiffstats
path: root/examples/proxapp.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2016-10-19 15:03:50 +1300
committerGitHub <noreply@github.com>2016-10-19 15:03:50 +1300
commit49346c5248b8aa33acef26f0d55f51dcd2493a59 (patch)
treee92c9ac66a83fed5cf964691e5b0e81b90fc1eea /examples/proxapp.py
parent83dbefb224c0b0d77b226f80e37b5b3d6bebb703 (diff)
parent7c32d4ea2a435484e83aa459831f74ca483d8e3c (diff)
downloadmitmproxy-49346c5248b8aa33acef26f0d55f51dcd2493a59.tar.gz
mitmproxy-49346c5248b8aa33acef26f0d55f51dcd2493a59.tar.bz2
mitmproxy-49346c5248b8aa33acef26f0d55f51dcd2493a59.zip
Merge pull request #1632 from cortesi/refactor
Start rationalising our module structure bit by bit
Diffstat (limited to 'examples/proxapp.py')
-rw-r--r--examples/proxapp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/proxapp.py b/examples/proxapp.py
index b4fa8d3d..f95c41e5 100644
--- a/examples/proxapp.py
+++ b/examples/proxapp.py
@@ -4,7 +4,7 @@ instance, we're using the Flask framework (http://flask.pocoo.org/) to expose
a single simplest-possible page.
"""
from flask import Flask
-from mitmproxy.builtins import wsgiapp
+from mitmproxy.addons import wsgiapp
app = Flask("proxapp")