diff options
Diffstat (limited to 'libmproxy/web/__init__.py')
-rw-r--r-- | libmproxy/web/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libmproxy/web/__init__.py b/libmproxy/web/__init__.py index c30a2a7e..43fc993d 100644 --- a/libmproxy/web/__init__.py +++ b/libmproxy/web/__init__.py @@ -11,6 +11,7 @@ class Stop(Exception): class WebFlowView(flow.FlowView): + def __init__(self, store): super(WebFlowView, self).__init__(store, None) @@ -47,6 +48,7 @@ class WebFlowView(flow.FlowView): class WebState(flow.State): + def __init__(self): super(WebState, self).__init__() self.view._close() @@ -121,6 +123,7 @@ class Options(object): class WebMaster(flow.FlowMaster): + def __init__(self, server, options): self.options = options super(WebMaster, self).__init__(server, WebState()) |