aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorShadab Zafar <dufferzafar0@gmail.com>2016-03-04 03:02:49 +0530
committerShadab Zafar <dufferzafar0@gmail.com>2016-03-04 03:02:49 +0530
commit7108d727055324d08ba82cbce5c91173ee599201 (patch)
tree7d65ee9d1da26137cfebe3ac24fec75c7887e1b1 /examples
parent1c8059937927d28d620785c8e9d05d034a442ce1 (diff)
downloadmitmproxy-7108d727055324d08ba82cbce5c91173ee599201.tar.gz
mitmproxy-7108d727055324d08ba82cbce5c91173ee599201.tar.bz2
mitmproxy-7108d727055324d08ba82cbce5c91173ee599201.zip
Fix pprint import
Diffstat (limited to 'examples')
-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 be9b986b..25661f7c 100644
--- a/examples/har_extractor.py
+++ b/examples/har_extractor.py
@@ -192,7 +192,7 @@ def done(context):
"""
Called once on script shutdown, after any other events.
"""
- from pprint import pprint
+ import pprint
import json
json_dump = context.HARLog.json()