summaryrefslogtreecommitdiffstats
path: root/Lib/py_compile.py
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2010-04-20 19:45:34 (GMT)
committerMatthias Klose <doko@ubuntu.com>2010-04-20 19:45:34 (GMT)
commitc166b4021facb0cac9e54bfb1b8c48cc0e6cba6f (patch)
tree07d2a1118504af07681af1529b7efbdb1a18ad63 /Lib/py_compile.py
parent8c09ebcf0cfc40ff4749e4937db797e5217cf453 (diff)
downloadcpython-c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f.zip
cpython-c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f.tar.gz
cpython-c166b4021facb0cac9e54bfb1b8c48cc0e6cba6f.tar.bz2
fix typo in r79533, introduced by the fix for issue #8233
Diffstat (limited to 'Lib/py_compile.py')
-rw-r--r--Lib/py_compile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/py_compile.py b/Lib/py_compile.py
index f88cfbb..dc1cae9 100644
--- a/Lib/py_compile.py
+++ b/Lib/py_compile.py
@@ -160,7 +160,7 @@ def main(args=None):
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)