From 2b43d0aadb2a4a997e9c734f1e95540a77991cc9 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 29 Jan 2016 20:00:20 -0600 Subject: [PATCH] Recognize more file extensions for Fortran --- bin/loopy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/loopy b/bin/loopy index f8de8f55a..c9fc8f516 100644 --- a/bin/loopy +++ b/bin/loopy @@ -109,6 +109,8 @@ def main(): ".floopy": "fortran", ".f90": "fortran", ".fpp": "fortran", + ".f": "fortran", + ".f77": "fortran", }.get(ext) with open(args.infile, "r") as infile_fd: infile_content = infile_fd.read() -- GitLab