diff options
Diffstat (limited to 'test/CFILESUFFIX.py')
-rw-r--r-- | test/CFILESUFFIX.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CFILESUFFIX.py b/test/CFILESUFFIX.py index e167155..1a81240 100644 --- a/test/CFILESUFFIX.py +++ b/test/CFILESUFFIX.py @@ -38,12 +38,11 @@ test = TestSCons.TestSCons() test.write('mylex.py', """ import getopt -import string import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 't', []) for a in args: contents = open(a, 'rb').read() - sys.stdout.write(string.replace(contents, 'LEX', 'mylex.py')) + sys.stdout.write(contents.replace('LEX', 'mylex.py')) sys.exit(0) """) |