diff options
Diffstat (limited to 'mitmproxy/web/master.py')
-rw-r--r-- | mitmproxy/web/master.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mitmproxy/web/master.py b/mitmproxy/web/master.py index 235ec70d..1f0dc709 100644 --- a/mitmproxy/web/master.py +++ b/mitmproxy/web/master.py @@ -11,6 +11,7 @@ from mitmproxy import controller from mitmproxy import exceptions from mitmproxy import flow from mitmproxy import options +from mitmproxy import master from mitmproxy.web import app from netlib.http import authentication @@ -130,7 +131,7 @@ class Options(options.Options): self.wauthenticator = None -class WebMaster(flow.FlowMaster): +class WebMaster(master.Master): def __init__(self, options, server): super().__init__(options, server) |