Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Ensure server_aliases is of type list instead of dict_keys in Py3+
Browse files Browse the repository at this point in the history
This resolves an issue where otherwise `lib.imprint` will fail on `self.data` for this Creator plug-in
  • Loading branch information
BigRoy committed Dec 28, 2021
1 parent d7b6582 commit cb99b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/hosts/maya/plugins/create/create_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def _create_render_settings(self):
# 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
Expand Down

0 comments on commit cb99b0a

Please sign in to comment.