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