mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
Ensure server_aliases is of type list instead of dict_keys in Py3+
This resolves an issue where otherwise `lib.imprint` will fail on `self.data` for this Creator plug-in
This commit is contained in:
parent
d7b6582cd3
commit
cb99b0acf7
1 changed files with 1 additions and 1 deletions
|
|
@ -254,7 +254,7 @@ class CreateRender(plugin.Creator):
|
|||
# get pools
|
||||
pool_names = []
|
||||
|
||||
self.server_aliases = self.deadline_servers.keys()
|
||||
self.server_aliases = list(self.deadline_servers.keys())
|
||||
self.data["deadlineServers"] = self.server_aliases
|
||||
self.data["suspendPublishJob"] = False
|
||||
self.data["review"] = True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue