Skip to content
Snippets Groups Projects
Commit 2b43d0aa authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Recognize more file extensions for Fortran

parent dde57232
No related branches found
No related tags found
No related merge requests found
...@@ -109,6 +109,8 @@ def main(): ...@@ -109,6 +109,8 @@ def main():
".floopy": "fortran", ".floopy": "fortran",
".f90": "fortran", ".f90": "fortran",
".fpp": "fortran", ".fpp": "fortran",
".f": "fortran",
".f77": "fortran",
}.get(ext) }.get(ext)
with open(args.infile, "r") as infile_fd: with open(args.infile, "r") as infile_fd:
infile_content = infile_fd.read() infile_content = infile_fd.read()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment