diff options
author | Leonard Richardson <leonardr@segfault.org> | 2012-07-03 17:59:25 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2012-07-03 17:59:25 -0400 |
commit | 96eaf6e8f54d84b02e0c3c8c334e7cfd29ef343c (patch) | |
tree | 7896fbad9bee2fac1f8e89df3d9235cfd4945e40 /bs4/dammit.py | |
parent | f0102682ece130382500f0ee58fbc3340f221d54 (diff) |
Mentioned cchardet in docs.
Diffstat (limited to 'bs4/dammit.py')
-rw-r--r-- | bs4/dammit.py | 2 |
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 |