From 369f35a2cc04dbe2a08f69f91a7b81823ed6c39c Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Sat, 14 May 2011 15:35:56 -0700 Subject: [PATCH] fix whitespace --- Lib/hashlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/hashlib.py b/Lib/hashlib.py index 0ebeed5a46e..91080955ddd 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)