diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-03-08 20:06:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-08 20:06:11 +0100 |
commit | 7bec0c73cf7f18e2c06ce33699d7c6a56060b72e (patch) | |
tree | 77af36dd7fc052b81378f743ec29a5da693847b1 | |
parent | 69f7ad21fec8f5b70ddb3f3222c20c9538cb24ef (diff) | |
parent | 927b5707fe80582fc7867e59a9b8c70a11bb8fe0 (diff) | |
download | mitmproxy-7bec0c73cf7f18e2c06ce33699d7c6a56060b72e.tar.gz mitmproxy-7bec0c73cf7f18e2c06ce33699d7c6a56060b72e.tar.bz2 mitmproxy-7bec0c73cf7f18e2c06ce33699d7c6a56060b72e.zip |
Merge pull request #2121 from mitmproxy/address-leftovers
fix tcp.Address leftovers
-rw-r--r-- | examples/complex/har_dump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/complex/har_dump.py b/examples/complex/har_dump.py index 51983b54..86a33684 100644 --- a/examples/complex/har_dump.py +++ b/examples/complex/har_dump.py @@ -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) |