correct syntax for integer comparison

This commit is contained in:
Martin Diehl 2019-11-21 19:49:46 +01:00
parent a5ae82fe90
commit cf88c1f907
1 changed files with 2 additions and 2 deletions

View File

@ -79,9 +79,9 @@ class Marc(Solver):
exitnumber = -1
fid_out = open(outFile,'r')
for line in fid_out:
if (string.find(line,'tress iteration') is not -1):
if (string.find(line,'tress iteration') != -1):
print(line)
elif (string.find(line,'Exit number') is not -1):
elif (string.find(line,'Exit number') != -1):
substr = line[string.find(line,'Exit number'):len(line)]
exitnumber = int(substr[12:16])