Get rid of indentation tabs in the test scripts and have runtest.py invoke them with...
[scons.git] / test / Fortran / F90FLAGS.py
index 3ac5a29681cf6bee97a5e212cd1b25abe7192235..69f1dfa97afe623451dde645d955ff425b5e8c93 100644 (file)
@@ -51,7 +51,7 @@ infile = open(args[0], 'rb')
 outfile = open(out, 'wb')
 for l in infile.readlines():
     if l[:5] != '#link':
-       outfile.write(l)
+        outfile.write(l)
 sys.exit(0)
 """)
 
@@ -67,7 +67,7 @@ infile = open(args[0], 'rb')
 outfile = open(out, 'wb')
 for l in infile.readlines():
     if l[:5] != '#link':
-       outfile.write(l)
+        outfile.write(l)
 sys.exit(0)
 """)
 
@@ -85,7 +85,7 @@ outfile = open(out, 'wb')
 outfile.write(optstring + "\n")
 for l in infile.readlines():
     if l[:len(comment)] != comment:
-       outfile.write(l)
+        outfile.write(l)
 sys.exit(0)
 """)