summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 f257770..03f2c62 100644
--- a/Lib/py_compile.py
+++ b/Lib/py_compile.py
@@ -169,7 +169,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)