summaryrefslogtreecommitdiffstats
path: root/test/Fortran/FORTRANFLAGS.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Fortran/FORTRANFLAGS.py')
-rw-r--r--test/Fortran/FORTRANFLAGS.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Fortran/FORTRANFLAGS.py b/test/Fortran/FORTRANFLAGS.py
index a4fb376..8d77d63 100644
--- a/test/Fortran/FORTRANFLAGS.py
+++ b/test/Fortran/FORTRANFLAGS.py
@@ -50,7 +50,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)
""")
@@ -66,7 +66,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)
""")
@@ -83,7 +83,7 @@ outfile = open(out, 'wb')
outfile.write(optstring + "\n")
for l in infile.readlines():
if l[:8] != '#fortran':
- outfile.write(l)
+ outfile.write(l)
sys.exit(0)
""")