mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +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"])
|
copied_status = dst_project_statuses.get(src_version_entity["status"])
|
||||||
if not copied_status:
|
if not copied_status:
|
||||||
copied_status = dst_project_statuses[
|
copied_status = dst_project_statuses[
|
||||||
dst_project_statuses.keys()[0]
|
next(iter(dst_project_statuses))
|
||||||
]
|
]
|
||||||
return copied_status["name"]
|
return copied_status["name"]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue