Get rid of indentation tabs in the test scripts and have runtest.py invoke them with...
[scons.git] / test / Fortran / F95COM.py
index 14c03e63028e970885db06d790075d397d3ba382..26423f87a89cd0f0e78b6c1df25cbb56167617cc 100644 (file)
@@ -52,7 +52,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)
 """)
 
@@ -68,7 +68,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)
 """)
 
@@ -79,7 +79,7 @@ outfile = open(sys.argv[2], 'wb')
 infile = open(sys.argv[3], 'rb')
 for l in infile.readlines():
     if l[:len(comment)] != comment:
-       outfile.write(l)
+        outfile.write(l)
 sys.exit(0)
 """)