blob: 37af33314853cdf77cb9255ecce821cbbdf5bcb0 [file] [log] [blame]
import sys
input = open(sys.argv[1], "r")
for line in input:
if "!interesting" in line:
sys.exit(0)
sys.exit(1)