diff options
Diffstat (limited to 'test/Fortran/F90.py')
-rw-r--r-- | test/Fortran/F90.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/Fortran/F90.py b/test/Fortran/F90.py index 7c31ee6..d7c73c6 100644 --- a/test/Fortran/F90.py +++ b/test/Fortran/F90.py @@ -100,11 +100,10 @@ if g90: test.write("wrapper.py", """import os -import string import sys open('%s', 'wb').write("wrapper.py\\n") -os.system(string.join(sys.argv[1:], " ")) -""" % string.replace(test.workpath('wrapper.out'), '\\', '\\\\')) +os.system(" ".join(sys.argv[1:])) +""" % test.workpath('wrapper.out').replace('\\', '\\\\')) test.write('SConstruct', """ foo = Environment(F90 = '%(fc)s') |