[Python-checkins] r80274 - python/trunk/Lib/py_compile.py

matthias.klose python-checkins at python.org
Tue Apr 20 21:45:34 CEST 2010


Author: matthias.klose
Date: Tue Apr 20 21:45:34 2010
New Revision: 80274

Log:
fix typo in r79533, introduced by the fix for issue #8233


Modified:
   python/trunk/Lib/py_compile.py

Modified: python/trunk/Lib/py_compile.py
==============================================================================
--- python/trunk/Lib/py_compile.py	(original)
+++ python/trunk/Lib/py_compile.py	Tue Apr 20 21:45:34 2010
@@ -160,7 +160,7 @@
         for filename in args:
             try:
                 compile(filename, doraise=True)
-            except PyCompileError as err:
+            except PyCompileError as error:
                 # return value to indicate at least one failure
                 rv = 1
                 sys.stderr.write(error.msg)


More information about the Python-checkins mailing list