Merge branch 'develop' into enhancement/extract_otio_review_adding_representation_log_debug

This commit is contained in:
Roy Nieterau 2025-02-17 19:23:21 +01:00 committed by GitHub
commit e9a4268cf7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,11 +116,11 @@ class CollectAnatomyInstanceData(pyblish.api.ContextPlugin):
if not_found_folder_paths:
joined_folder_paths = ", ".join(
["\"{}\"".format(path) for path in not_found_folder_paths]
[f"\"{path}\"" for path in not_found_folder_paths]
)
self.log.warning(
f"Not found folder entities with paths {joined_folder_paths}."
)
self.log.warning((
"Not found folder entities with paths \"{}\"."
).format(joined_folder_paths))
def fill_missing_task_entities(self, context, project_name):
self.log.debug("Querying task entities for instances.")