Added F90 checking in analyze_source script.

This commit is contained in:
Paul Romano 2012-01-25 23:06:24 -05:00
parent 63e6ef7930
commit 3aa700a9e1

View file

@ -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()