fix for a bug reported by nightman (unknown charset 'null')

This commit is contained in:
Miroslav Stampar 2010-11-17 09:57:32 +00:00
parent d757e4ae1c
commit 5abbea4a9f

View File

@ -92,6 +92,8 @@ def checkCharEncoding(encoding):
encoding = 'cp%s' % encoding[3:]
elif encoding.startswith('windows') and not encoding.startswith('windows-'):
encoding = 'windows-%s' % encoding[7:]
elif encoding == 'null':
return None
try:
codecs.lookup(encoding)