From 18b803d03a31c12d0d73890bed98bc775ff31d33 Mon Sep 17 00:00:00 2001 From: Justus Wingert Date: Sat, 15 Nov 2014 18:45:28 +0100 Subject: [PATCH] Typo... --- examples/har_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/har_extractor.py b/examples/har_extractor.py index 666dc03f0..cc2cf5d7c 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)