Get rid of indentation tabs in the test scripts and have runtest.py invoke them with...
[scons.git] / test / Fortran / FORTRANCOM.py
index 6fbaf8f514d305ab7730274a9f025492019c1a91..f79ad6da6b7d33b49292517fdccd13d1f621bb07 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)
 """)