diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-07-20 16:33:12 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-07-22 15:30:34 +0200 |
commit | 6101d11d6ce412a19b542817bc8a7080a1f36758 (patch) | |
tree | c529c028bd93716656b2acebcd03c3572071e104 /libpathod/pathod.py | |
parent | 3cf6bd5fb61d0b84033f4c86b3fc4a99d5287ac1 (diff) | |
download | mitmproxy-6101d11d6ce412a19b542817bc8a7080a1f36758.tar.gz mitmproxy-6101d11d6ce412a19b542817bc8a7080a1f36758.tar.bz2 mitmproxy-6101d11d6ce412a19b542817bc8a7080a1f36758.zip |
http2: remove odict workaround
Diffstat (limited to 'libpathod/pathod.py')
-rw-r--r-- | libpathod/pathod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpathod/pathod.py b/libpathod/pathod.py index e634d7c2..6f07ecc5 100644 --- a/libpathod/pathod.py +++ b/libpathod/pathod.py @@ -138,7 +138,7 @@ class PathodHandler(tcp.BaseHandler): method = req.method path = req.path httpversion = req.httpversion - headers = odict.ODictCaseless(req.headers) + headers = req.headers body = req.body clientcert = None |