[Python-checkins] cpython (3.2): fix whitespace

gregory.p.smith python-checkins at python.org
Sun May 15 00:36:25 CEST 2011


http://hg.python.org/cpython/rev/c238bddf3596
changeset:   70127:c238bddf3596
branch:      3.2
user:        Gregory P. Smith <greg at krypto.org>
date:        Sat May 14 15:35:19 2011 -0700
summary:
  fix whitespace

files:
  Lib/hashlib.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/hashlib.py b/Lib/hashlib.py
--- a/Lib/hashlib.py
+++ b/Lib/hashlib.py
@@ -86,7 +86,7 @@
             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)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list