aboutsummaryrefslogtreecommitdiffstats
path: root/examples/flowwriter.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2016-06-14 16:29:15 +1200
committerGitHub <noreply@github.com>2016-06-14 16:29:15 +1200
commit93276d45be68790b5f4aeb4577c380ca1608efb3 (patch)
tree9553d0f45e705da04bfa4be8dd5e39d09fcd112f /examples/flowwriter.py
parent4c292b0197d820e9e108aa05b10927107a0503c3 (diff)
parentd8ae2f156203a81a8e6d325f5c460c351cfbfc5c (diff)
downloadmitmproxy-93276d45be68790b5f4aeb4577c380ca1608efb3.tar.gz
mitmproxy-93276d45be68790b5f4aeb4577c380ca1608efb3.tar.bz2
mitmproxy-93276d45be68790b5f4aeb4577c380ca1608efb3.zip
Merge branch 'master' into netlibrace
Diffstat (limited to 'examples/flowwriter.py')
-rw-r--r--examples/flowwriter.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/flowwriter.py b/examples/flowwriter.py
index 8fb8cc60..cb5ccb0d 100644
--- a/examples/flowwriter.py
+++ b/examples/flowwriter.py
@@ -4,14 +4,14 @@ import sys
from mitmproxy.flow import FlowWriter
-def start(context, argv):
- if len(argv) != 2:
+def start(context):
+ if len(sys.argv) != 2:
raise ValueError('Usage: -s "flowriter.py filename"')
- if argv[1] == "-":
+ if sys.argv[1] == "-":
f = sys.stdout
else:
- f = open(argv[1], "wb")
+ f = open(sys.argv[1], "wb")
context.flow_writer = FlowWriter(f)