update_failure_list.py: fixed Python "raise" statement.

This commit is contained in:
Josh Haberman 2017-03-09 14:48:28 -08:00
parent 2b7430d96a
commit 3e6245e5d7

View file

@ -57,7 +57,7 @@ for remove_file in (args.remove_list or []):
with open(remove_file) as f:
for line in f:
if line in add_set:
raise "Asked to both add and remove test: " + line
raise Exception("Asked to both add and remove test: " + line)
remove_set.add(line.strip())
add_list = sorted(add_set, reverse=True)