aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/utils.py')
-rw-r--r--netlib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/utils.py b/netlib/utils.py
index d5b30128..6f6d1ea0 100644
--- a/netlib/utils.py
+++ b/netlib/utils.py
@@ -337,7 +337,7 @@ def multipartdecode(headers, content):
"""
Takes a multipart boundary encoded string and returns list of (key, value) tuples.
"""
- v = headers.get("Content-Type")
+ v = headers.get("content-type")
if v:
v = parse_content_type(v)
if not v: