Skip to content

Commit 1c99473

Browse files
committed
Merged revisions 80274 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80274 | matthias.klose | 2010-04-20 21:45:34 +0200 (Di, 20 Apr 2010) | 2 lines fix typo in r79533, introduced by the fix for issue #8233 ........
1 parent bdc55ab commit 1c99473

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/py_compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def main(args=None):
169169
for filename in args:
170170
try:
171171
compile(filename, doraise=True)
172-
except PyCompileError as err:
172+
except PyCompileError as error:
173173
# return value to indicate at least one failure
174174
rv = 1
175175
sys.stderr.write(error.msg)

0 commit comments

Comments
 (0)