mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Fix access to dict keys
This commit is contained in:
parent
fcc82a8e46
commit
3104e07c78
1 changed files with 1 additions and 1 deletions
|
|
@ -1316,7 +1316,7 @@ class ProjectPushItemProcess:
|
|||
copied_status = dst_project_statuses.get(src_version_entity["status"])
|
||||
if not copied_status:
|
||||
copied_status = dst_project_statuses[
|
||||
dst_project_statuses.keys()[0]
|
||||
next(iter(dst_project_statuses))
|
||||
]
|
||||
return copied_status["name"]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue