diff options
Diffstat (limited to 'test/Fortran/FORTRAN.py')
-rw-r--r-- | test/Fortran/FORTRAN.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Fortran/FORTRAN.py b/test/Fortran/FORTRAN.py index 0195558..47a0a89 100644 --- a/test/Fortran/FORTRAN.py +++ b/test/Fortran/FORTRAN.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) """) @@ -82,7 +82,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:4] != '#g77': - outfile.write(l) + outfile.write(l) sys.exit(0) """) |