aboutsummaryrefslogtreecommitdiffstats
path: root/examples/har_extractor.py
diff options
context:
space:
mode:
authorJim Shaver <dcypherd@gmail.com>2015-05-29 23:17:48 -0400
committerJim Shaver <dcypherd@gmail.com>2015-05-29 23:17:48 -0400
commit4fe2c069cca07aadf983f54e18dac4de492d5d69 (patch)
tree58b2ddd9988b46cce9c2811eca521e2d3e6db8e1 /examples/har_extractor.py
parent97c6d7ed25e026ae8d5511550df9718f829a7f1e (diff)
downloadmitmproxy-4fe2c069cca07aadf983f54e18dac4de492d5d69.tar.gz
mitmproxy-4fe2c069cca07aadf983f54e18dac4de492d5d69.tar.bz2
mitmproxy-4fe2c069cca07aadf983f54e18dac4de492d5d69.zip
Fixed print function to be inline with python 3
Diffstat (limited to 'examples/har_extractor.py')
-rw-r--r--examples/har_extractor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/har_extractor.py b/examples/har_extractor.py
index 5c228ece..489898a2 100644
--- a/examples/har_extractor.py
+++ b/examples/har_extractor.py
@@ -231,4 +231,4 @@ def print_attributes(obj, filter_string=None, hide_privates=False):
if filter_string is not None and filter_string not in attr:
continue
value = getattr(obj, attr)
- print "%s.%s" % ('obj', attr), value, type(value) \ No newline at end of file
+ print("%s.%s" % ('obj', attr), value, type(value))