mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Fix doubled quotes around outer elements
This commit is contained in:
parent
a83f1ca5ad
commit
8c8205a4e6
1 changed files with 2 additions and 2 deletions
|
|
@ -116,10 +116,10 @@ class CollectAnatomyInstanceData(pyblish.api.ContextPlugin):
|
||||||
|
|
||||||
if not_found_folder_paths:
|
if not_found_folder_paths:
|
||||||
joined_folder_paths = ", ".join(
|
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((
|
self.log.warning((
|
||||||
"Not found folder entities with paths \"{}\"."
|
"Not found folder entities with paths {}."
|
||||||
).format(joined_folder_paths))
|
).format(joined_folder_paths))
|
||||||
|
|
||||||
def fill_missing_task_entities(self, context, project_name):
|
def fill_missing_task_entities(self, context, project_name):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue