summaryrefslogtreecommitdiffstats
path: root/test/Fortran/SHFORTRAN.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/Fortran/SHFORTRAN.py')
-rw-r--r--test/Fortran/SHFORTRAN.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Fortran/SHFORTRAN.py b/test/Fortran/SHFORTRAN.py
index 205a761..17a58f5 100644
--- a/test/Fortran/SHFORTRAN.py
+++ b/test/Fortran/SHFORTRAN.py
@@ -46,7 +46,7 @@ infile = open(args[0], 'rb')
outfile = open(out, 'wb')
for l in infile.readlines():
if l[:8] != '#fortran':
- outfile.write(l)
+ outfile.write(l)
sys.exit(0)
""")