mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
formatting changes
This commit is contained in:
parent
900f07d69e
commit
25a1a56dc4
1 changed files with 3 additions and 4 deletions
|
|
@ -497,9 +497,8 @@ class DeleteAssetSubset(BaseAction):
|
||||||
for entity in entities:
|
for entity in entities:
|
||||||
ftrack_id = entity["id"]
|
ftrack_id = entity["id"]
|
||||||
ftrack_id_name_map[ftrack_id] = entity["name"]
|
ftrack_id_name_map[ftrack_id] = entity["name"]
|
||||||
if ftrack_id in ftrack_ids_to_delete:
|
if ftrack_id not in ftrack_ids_to_delete:
|
||||||
continue
|
not_deleted_entities_id.append(ftrack_id)
|
||||||
not_deleted_entities_id.append(ftrack_id)
|
|
||||||
|
|
||||||
mongo_proc_txt = "MongoProcessing: "
|
mongo_proc_txt = "MongoProcessing: "
|
||||||
ftrack_proc_txt = "Ftrack processing: "
|
ftrack_proc_txt = "Ftrack processing: "
|
||||||
|
|
@ -581,7 +580,7 @@ class DeleteAssetSubset(BaseAction):
|
||||||
msg = "Failed to delete asset"
|
msg = "Failed to delete asset"
|
||||||
report_messages[msg].append(asset["id"])
|
report_messages[msg].append(asset["id"])
|
||||||
self.log.warning(
|
self.log.warning(
|
||||||
"{} <{}>".format(asset["id"]),
|
"Asset: {} <{}>".format(asset["name"], asset["id"]),
|
||||||
exc_info=True
|
exc_info=True
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue