Bug with "THEN" => lowercased

This commit is contained in:
Anthony Scemama 2010-02-19 11:41:57 +01:00
parent 2731349781
commit bc326473b3
2 changed files with 2 additions and 2 deletions

View File

@ -449,7 +449,7 @@ check_opt()
######################################################################
if __name__ == '__main__':
for i in range(len(parsed_text)):
if parsed_text[i][0] == 'properties.irp.f':
if parsed_text[i][0] == 'intmul.irp.f':
print '!-------- %s -----------'%(parsed_text[i][0])
for line in parsed_text[i][1]:
print line[1]

View File

@ -691,7 +691,7 @@ endif'''
result = []
for line in text:
if isinstance(line,If):
if line.text.endswith("then"):
if line.text.lower().endswith("then"):
result.append(line)
else:
buffer = line.text