diff options
Diffstat (limited to 'examples/flowbasic')
| -rwxr-xr-x | examples/flowbasic | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/flowbasic b/examples/flowbasic index 9aeb83c5..21d31efa 100755 --- a/examples/flowbasic +++ b/examples/flowbasic @@ -35,9 +35,10 @@ class MyMaster(flow.FlowMaster):  config = proxy.ProxyConfig( +    port=8080,      ca_file=os.path.expanduser("~/.mitmproxy/mitmproxy-ca.pem")  )  state = flow.State() -server = ProxyServer(config, 8080) +server = ProxyServer(config)  m = MyMaster(server, state)  m.run()  | 
