hound fixes

This commit is contained in:
iLLiCiTiT 2020-12-22 18:56:50 +01:00
parent 2acb4d52c0
commit 93432c1836
3 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ import re
import json
import tempfile
from .execute import run_subprocess, execute
from .execute import run_subprocess
from pype.settings import get_project_settings

View file

@ -1628,7 +1628,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
# run subprocess
self.log.debug("Executing: {}".format(subprcs_cmd))
output = pype.api.run_subprocess(
pype.api.run_subprocess(
subprcs_cmd, shell=True, logger=self.log
)

View file

@ -186,7 +186,7 @@ class ExtractReviewSlate(pype.api.Extractor):
# run slate generation subprocess
self.log.debug("Slate Executing: {}".format(slate_subprcs_cmd))
slate_output = pype.api.run_subprocess(
pype.api.run_subprocess(
slate_subprcs_cmd, shell=True, logger=self.log
)
@ -222,7 +222,7 @@ class ExtractReviewSlate(pype.api.Extractor):
# ffmpeg concat subprocess
self.log.debug("Executing concat: {}".format(concat_subprcs_cmd))
concat_output = pype.api.run_subprocess(
pype.api.run_subprocess(
concat_subprcs_cmd, shell=True, logger=self.log
)