diff options
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.py b/environment.py index 1292577..640892e 100644 --- a/environment.py +++ b/environment.py @@ -1195,7 +1195,7 @@ end program prog def can_compile(self, src): suffix = os.path.splitext(src)[1].lower() - if suffix == '.f' or suffix == '.f95': + if suffix == '.f' or suffix == '.f95' or suffix == '.f90': return True return False |