소스 검색

Remove checking output of pyrcc4

Kentaro Wada 9 년 전
부모
커밋
209bbb5ad5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -19,7 +19,7 @@ class LabelmeBuildPyCommand(BuildPyCommand):
         cmd = 'pyrcc4 -o {1} {0}'.format(src, dst)
         print('converting {0} -> {1}'.format(src, dst))
         this_dir = osp.dirname(osp.abspath(__file__))
-        subprocess.check_call(shlex.split(cmd), cwd=this_dir)
+        subprocess.call(shlex.split(cmd), cwd=this_dir)
 
 
 try: