Move 2.0 changes collected in branches/pending back to trunk for further
[scons.git] / test / Fortran / F90.py
index 7c31ee6f4090f74a656fb77e4cc56e285eb5f435..d7c73c60571077772f683a34f6fb0b8c33f860f6 100644 (file)
@@ -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')