diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-05-29 13:33:20 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-05-29 13:43:20 +0200 |
commit | e2447406cc89c5a9c3e20f1faf4f5bb9fd2f55b7 (patch) | |
tree | b37af6f7e7658aa8d4851fde80928475840921f3 /netlib/http/headers.py | |
parent | 5c45ca7f9aba05849bd8db24bb58c1951f79e630 (diff) | |
download | mitmproxy-e2447406cc89c5a9c3e20f1faf4f5bb9fd2f55b7.tar.gz mitmproxy-e2447406cc89c5a9c3e20f1faf4f5bb9fd2f55b7.tar.bz2 mitmproxy-e2447406cc89c5a9c3e20f1faf4f5bb9fd2f55b7.zip |
more style cleanup
Diffstat (limited to 'netlib/http/headers.py')
-rw-r--r-- | netlib/http/headers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/http/headers.py b/netlib/http/headers.py index 6067ff5e..5cf15b6f 100644 --- a/netlib/http/headers.py +++ b/netlib/http/headers.py @@ -97,7 +97,7 @@ class Headers(MultiDict): headers = { _always_bytes(name).replace(b"_", b"-"): _always_bytes(value) for name, value in six.iteritems(headers) - } + } self.update(headers) @staticmethod |