diff --git a/src/utils/analyze_source.py b/src/utils/analyze_source.py index 7acd5df45d..b382103283 100755 --- a/src/utils/analyze_source.py +++ b/src/utils/analyze_source.py @@ -34,6 +34,8 @@ for sourceFile in source: commentChar = '!' elif ending == 'f90': commentChar = '!' + elif ending == 'F90': + commentChar = '!' for line in open(sourceFile, 'r'): line = line.strip()