Added Josselin Jacquard to AUTHORS

This commit is contained in:
Kenneth Reitz
2011-08-30 23:58:31 -04:00
parent 9bfe04586d
commit 6d25fff3f9
2 changed files with 5 additions and 2 deletions
+1
View File
@@ -42,3 +42,4 @@ Patches and Suggestions
- Alejandro Giacometti
- Rick Mak
- Johan Bergström
- Josselin Jacquard
+4 -2
View File
@@ -150,8 +150,10 @@ def get_encoding_from_headers(headers):
"""
content_type = headers.get('content-type')
if not content_type :
return
if not content_type:
return None
content_type, params = cgi.parse_header(content_type)
if 'charset' in params: