diff options
author | Gregory P. Smith <greg@krypto.org> | 2011-05-14 22:35:19 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2011-05-14 22:35:19 (GMT) |
commit | a3221f82099d1b000387bf2d75e906ccd6801262 (patch) | |
tree | 5157d1fafbe5629801a9f2b8d99bfc8bfd782502 /Lib/hashlib.py | |
parent | 11ddc999e03b5b3d1c780e2e81d8a65ed9bf6aaf (diff) | |
download | cpython-a3221f82099d1b000387bf2d75e906ccd6801262.zip cpython-a3221f82099d1b000387bf2d75e906ccd6801262.tar.gz cpython-a3221f82099d1b000387bf2d75e906ccd6801262.tar.bz2 |
fix whitespace
Diffstat (limited to 'Lib/hashlib.py')
-rw-r--r-- | Lib/hashlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/hashlib.py b/Lib/hashlib.py index 0ebeed5..9108095 100644 --- a/Lib/hashlib.py +++ b/Lib/hashlib.py @@ -86,7 +86,7 @@ def __get_builtin_constructor(name): elif bs == '384': return _sha512.sha384 except ImportError: - pass # no extension module, this hash is unsupported. + pass # no extension module, this hash is unsupported. raise ValueError('unsupported hash type %s' % name) |