mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
hound fixes
This commit is contained in:
parent
2acb4d52c0
commit
93432c1836
3 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue