thanks, @sigmavirus24
authorKenneth Reitz <me@kennethreitz.com>
Sun, 23 Dec 2012 06:45:49 +0000 (01:45 -0500)
committerKenneth Reitz <me@kennethreitz.com>
Sun, 23 Dec 2012 06:45:49 +0000 (01:45 -0500)
requests/models.py

index 2cf1b7b..9ddea45 100644 (file)
@@ -443,7 +443,8 @@ class Response(object):
 
     @property
     def apparent_encoding(self):
-        """The apparent encoding, provided by the lovely Charade library."""
+        """The apparent encoding, provided by the lovely Charade library
+        (Thanks, Ian!)."""
         return chardet.detect(self.content)['encoding']
 
     def iter_content(self, chunk_size=1, decode_unicode=False):