소스 검색

Merge pull request #2819 from haberman/pythonexcept

update_failure_list.py: fixed Python "raise" statement.
Joshua Haberman 8 년 전
부모
커밋
cad6a51a30
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      conformance/update_failure_list.py

+ 1 - 1
conformance/update_failure_list.py

@@ -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)