diff options
author | Gregory P. Smith <greg@krypto.org> | 2011-05-14 22:35:56 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2011-05-14 22:35:56 (GMT) |
commit | 369f35a2cc04dbe2a08f69f91a7b81823ed6c39c (patch) | |
tree | e6a10742088a2db696e5f4038bb8c5aec1f48adb /Lib | |
parent | ec075e6479fa7e98b17625e954b442c205ce5672 (diff) | |
download | cpython-369f35a2cc04dbe2a08f69f91a7b81823ed6c39c.zip cpython-369f35a2cc04dbe2a08f69f91a7b81823ed6c39c.tar.gz cpython-369f35a2cc04dbe2a08f69f91a7b81823ed6c39c.tar.bz2 |
fix whitespace
Diffstat (limited to 'Lib')
-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) |