commit | a847ccbeaefdd15fa093067f171605e3a5f9a866 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Oct 21 13:01:23 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Oct 21 13:01:23 2010 +0000 |
tree | 464517996ffa798aff0350382938df8a871ca14c | |
parent | 29848f0570ad595b1f0ae4e7a3d85f6694187cd3 [diff] [blame] |
Fix missing import.
diff --git a/Tools/freeze/makeconfig.py b/Tools/freeze/makeconfig.py index bed6f6a..018992c 100644 --- a/Tools/freeze/makeconfig.py +++ b/Tools/freeze/makeconfig.py
@@ -1,5 +1,5 @@ import re - +import sys # Write the config.c file @@ -37,7 +37,6 @@ # Test program. def test(): - import sys if not sys.argv[3:]: print('usage: python makeconfig.py config.c.in outputfile', end=' ') print('modulename ...')