aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJustus Wingert <justus@abi007.info>2014-11-15 18:45:28 +0100
committerJustus Wingert <justus@abi007.info>2014-11-15 18:45:28 +0100
commit18b803d03a31c12d0d73890bed98bc775ff31d33 (patch)
treeac09c488fb5e7f0e00713620c8bea955ba2ecfe7 /examples
parentf3a78d4795a97f99194a46c764cfeb1fe6fd01f2 (diff)
downloadmitmproxy-18b803d03a31c12d0d73890bed98bc775ff31d33.tar.gz
mitmproxy-18b803d03a31c12d0d73890bed98bc775ff31d33.tar.bz2
mitmproxy-18b803d03a31c12d0d73890bed98bc775ff31d33.zip
Typo...
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 666dc03f..cc2cf5d7 100644
--- a/examples/har_extractor.py
+++ b/examples/har_extractor.py
@@ -65,7 +65,7 @@ def response(context, flow):
# Get the ssl_time for this server_conn as the difference between the start of the successful
# tcp setup and the successful ssl setup. Afterwards add it to seen list, in order to avoid
# the ssl_time being present in entries that use an existing connection. If no ssl setup has
- # been made initiate it is also left as -1 since it doesn't apply to this connection.
+ # been made it is also left as -1 since it doesn't apply to this connection.
ssl_time = flow.server_conn.timestamp_ssl_setup - flow.server_conn.timestamp_tcp_setup
context.seen_server_ssl.add(flow.server_conn)