From 3aa700a9e18e71eec3833945a80310f6229eb607 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 25 Jan 2012 23:06:24 -0500 Subject: [PATCH] Added F90 checking in analyze_source script. --- src/utils/analyze_source.py | 2 ++ 1 file changed, 2 insertions(+) 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()