diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-04-26 14:42:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-26 14:42:48 +0200 |
commit | 0f9081b18de9afe9f22020e9b7a9cda1dabc7fb8 (patch) | |
tree | 6d4ed46a4f297cb819b0ccb12d5abe28873266b6 /examples/complex/har_dump.py | |
parent | d5ea08db6244e4957f9134a4313a90d3efb8dde9 (diff) | |
parent | 87610cc8b280c191ec7efbe43679145fbea6aa77 (diff) | |
download | mitmproxy-0f9081b18de9afe9f22020e9b7a9cda1dabc7fb8.tar.gz mitmproxy-0f9081b18de9afe9f22020e9b7a9cda1dabc7fb8.tar.bz2 mitmproxy-0f9081b18de9afe9f22020e9b7a9cda1dabc7fb8.zip |
Merge pull request #2269 from mhils/issue-2250
fix #2250, add type info to cookie module
Diffstat (limited to 'examples/complex/har_dump.py')
-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 0515d0f5..b6b9ffae 100644 --- a/examples/complex/har_dump.py +++ b/examples/complex/har_dump.py @@ -206,7 +206,7 @@ def format_request_cookies(fields): def format_response_cookies(fields): - return format_cookies((c[0], c[1].value, c[1].attrs) for c in fields) + return format_cookies((c[0], c[1][0], c[1][1]) for c in fields) def name_value(obj): |