From 57911ae35a76276997fb51afb78f0a8dfeb684b8 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Tue, 27 Nov 2001 23:35:10 +0000 Subject: Fix [ #484645 ] little bug in pycodegen.py --- Lib/compiler/pycodegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/compiler/pycodegen.py') diff --git a/Lib/compiler/pycodegen.py b/Lib/compiler/pycodegen.py index 83e64336d9..f526ae18bb 100644 --- a/Lib/compiler/pycodegen.py +++ b/Lib/compiler/pycodegen.py @@ -1378,4 +1378,4 @@ if __name__ == "__main__": import sys for file in sys.argv[1:]: - compile(file) + compileFile(file) -- cgit v1.2.1