aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/utils.py')
-rw-r--r--libmproxy/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/utils.py b/libmproxy/utils.py
index 0eaada7c..97aa1e55 100644
--- a/libmproxy/utils.py
+++ b/libmproxy/utils.py
@@ -289,7 +289,7 @@ def parse_content_type(c):
clause = i.split("=", 1)
if len(clause) == 2:
d[clause[0].strip()] = clause[1].strip()
- return ts[0], ts[1], d
+ return ts[0].lower(), ts[1].lower(), d
def hostport(scheme, host, port):