Change raise statement to PEP 8 style.

This commit is contained in:
Walter Dörwald 2006-03-18 16:35:17 +00:00
parent e5c5117acf
commit 6a7ec7c3e2

View file

@ -14,8 +14,7 @@ import __builtin__, sys
try:
from _codecs import *
except ImportError, why:
raise SystemError,\
'Failed to load the builtin codecs: %s' % why
raise SystemError('Failed to load the builtin codecs: %s' % why)
__all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",
"BOM_LE", "BOM32_BE", "BOM32_LE", "BOM64_BE", "BOM64_LE",