summaryrefslogtreecommitdiffstats
path: root/test/Fortran/F90FLAGS.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Fortran/F90FLAGS.py')
-rw-r--r--test/Fortran/F90FLAGS.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Fortran/F90FLAGS.py b/test/Fortran/F90FLAGS.py
index 3ac5a29..69f1dfa 100644
--- a/test/Fortran/F90FLAGS.py
+++ b/test/Fortran/F90FLAGS.py
@@ -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)
""")