Merge branch 'bugfix/PYPE-428-dazzle-feedback-publish-errors' into feature/PYPE-405-unify-preview-quicktime-creatio

This commit is contained in:
Jakub Jezek 2019-07-18 15:11:10 +02:00
commit b8886eaa50
5 changed files with 11 additions and 6 deletions

View file

@ -75,6 +75,9 @@ class ExtractBurnin(pype.api.Extractor):
[os.getenv("PYPE_PYTHON_EXE"), scriptpath, json_data]
)
p.wait()
if not os.path.isfile(full_burnin_path):
self.log.error(
"Burnin file wasn't created succesfully")
except Exception as e:
raise RuntimeError("Burnin script didn't work: `{}`".format(e))

View file

@ -286,8 +286,9 @@ class IntegrateAssetNew(pyblish.api.InstancePlugin):
os.path.normpath(
anatomy_filled[template_name]["path"])
)
self.log.debug(
"test_dest_files: {}".format(str(test_dest_files)))
self.log.debug(
"test_dest_files: {}".format(str(test_dest_files)))
dst_collections, remainder = clique.assemble(test_dest_files)
dst_collection = dst_collections[0]