I am trying to check for multiple strings in a line,am trying to do the following but the check fails when the line contains 'Change-Id' or 'N/A',please advise
line = 'N/A'
if (('Change-Id|N/A') not in line):
print line
else:
print "line check failed"