Просмотр исходного кода

Remove checking output of pyrcc4

Kentaro Wada 9 лет назад
Родитель
Сommit
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: