diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-15 18:08:37 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-15 18:08:37 (GMT) |
commit | f99b8162a2e6969cf9b46013c7ef383359142e62 (patch) | |
tree | aa40269e3b0469a1294dbeed8ed1f26ec4963f41 /Lib/encodings/__init__.py | |
parent | 13ed60b5045aafff22918cf4262bcc2dd3afea90 (diff) | |
download | cpython-f99b8162a2e6969cf9b46013c7ef383359142e62.zip cpython-f99b8162a2e6969cf9b46013c7ef383359142e62.tar.gz cpython-f99b8162a2e6969cf9b46013c7ef383359142e62.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/encodings/__init__.py')
-rw-r--r-- | Lib/encodings/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/encodings/__init__.py b/Lib/encodings/__init__.py index f8d2a2a..1f469bf 100644 --- a/Lib/encodings/__init__.py +++ b/Lib/encodings/__init__.py @@ -117,9 +117,9 @@ def search_function(encoding): entry = getregentry() if not isinstance(entry, codecs.CodecInfo): if not 4 <= len(entry) <= 7: - raise CodecRegistryError,\ - 'module "%s" (%s) failed to register' % \ - (mod.__name__, mod.__file__) + raise CodecRegistryError,\ + 'module "%s" (%s) failed to register' % \ + (mod.__name__, mod.__file__) if not callable(entry[0]) or \ not callable(entry[1]) or \ (entry[2] is not None and not callable(entry[2])) or \ |