mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
"use_python_2" is optional in application settings
This commit is contained in:
parent
dd516be9b7
commit
13aec9cb57
1 changed files with 1 additions and 1 deletions
|
|
@ -179,7 +179,7 @@ class Application:
|
||||||
if group.enabled:
|
if group.enabled:
|
||||||
enabled = data.get("enabled", True)
|
enabled = data.get("enabled", True)
|
||||||
self.enabled = enabled
|
self.enabled = enabled
|
||||||
self.use_python_2 = data["use_python_2"]
|
self.use_python_2 = data.get("use_python_2", False)
|
||||||
|
|
||||||
self.label = data.get("variant_label") or name
|
self.label = data.get("variant_label") or name
|
||||||
self.full_name = "/".join((group.name, name))
|
self.full_name = "/".join((group.name, name))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue