summaryrefslogtreecommitdiff
path: root/bs4/dammit.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2012-07-03 17:59:25 -0400
committerLeonard Richardson <leonardr@segfault.org>2012-07-03 17:59:25 -0400
commit96eaf6e8f54d84b02e0c3c8c334e7cfd29ef343c (patch)
tree7896fbad9bee2fac1f8e89df3d9235cfd4945e40 /bs4/dammit.py
parentf0102682ece130382500f0ee58fbc3340f221d54 (diff)
Mentioned cchardet in docs.
Diffstat (limited to 'bs4/dammit.py')
-rw-r--r--bs4/dammit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/dammit.py b/bs4/dammit.py
index 39ea9ee..b8828cb 100644
--- a/bs4/dammit.py
+++ b/bs4/dammit.py
@@ -19,7 +19,7 @@ try:
# PyPI package: cchardet
import cchardet
def chardet_dammit(s):
- return cchardet.detect(s).lower()
+ return cchardet.detect(s)
except ImportError:
try:
# Fall back to the pure Python implementation