Skip to content

Commit

Permalink
Merge pull request mitmproxy#2121 from mitmproxy/address-leftovers
Browse files Browse the repository at this point in the history
fix tcp.Address leftovers
  • Loading branch information
mhils committed Mar 8, 2017
2 parents 69f7ad2 + 927b570 commit 7bec0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/complex/har_dump.py
Expand Up @@ -147,7 +147,7 @@ def response(flow):
}

if flow.server_conn.connected():
entry["serverIPAddress"] = str(flow.server_conn.ip_address.address[0])
entry["serverIPAddress"] = str(flow.server_conn.ip_address[0])

HAR["log"]["entries"].append(entry)

Expand Down

0 comments on commit 7bec0c7

Please sign in to comment.