mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix calling of missing method
This commit is contained in:
parent
2292ecbac1
commit
373df56254
1 changed files with 3 additions and 3 deletions
|
|
@ -380,10 +380,10 @@ class ContainersModel:
|
|||
repre_id, uuid.uuid4().hex
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
except Exception:
|
||||
# skip item if required data are missing
|
||||
self._controller.log_error(
|
||||
f"Failed to create item: {e}"
|
||||
self._log.warning(
|
||||
f"Failed to create container item", exc_info=True
|
||||
)
|
||||
continue
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue