aboutsummaryrefslogtreecommitdiffstats
path: root/examples/har_extractor.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2015-05-31 15:20:06 +0200
committerMaximilian Hils <git@maximilianhils.com>2015-05-31 15:20:06 +0200
commitc28cc6fe96becc3dae860f0abca4b00149372743 (patch)
tree06610f96a2ecd2ac13f08caf386aab8b8c088d37 /examples/har_extractor.py
parent06fba18106a8f759ec6f08453e86772a170c653b (diff)
parent07cc7f6f50074393d41d24ed2ed06e62507860c2 (diff)
downloadmitmproxy-c28cc6fe96becc3dae860f0abca4b00149372743.tar.gz
mitmproxy-c28cc6fe96becc3dae860f0abca4b00149372743.tar.bz2
mitmproxy-c28cc6fe96becc3dae860f0abca4b00149372743.zip
Merge pull request #600 from elitest/print-bracket-fix
Print consistency
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 1a76fa1f..f06efec3 100644
--- a/examples/har_extractor.py
+++ b/examples/har_extractor.py
@@ -251,4 +251,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)
+ print("%s.%s" % ('obj', attr), value, type(value))