mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Merge pull request #819 from pypeclub/bugfix/module_keys_fix
Module keys fix
This commit is contained in:
commit
196d5945fc
3 changed files with 3 additions and 3 deletions
|
|
@ -211,7 +211,7 @@ class CustomAttributes(BaseAction):
|
|||
|
||||
self.groups = {}
|
||||
|
||||
self.ftrack_settings = get_system_settings()["modules"]["Ftrack"]
|
||||
self.ftrack_settings = get_system_settings()["modules"]["ftrack"]
|
||||
self.attrs_presets = self.prepare_attribute_pressets()
|
||||
|
||||
def prepare_attribute_pressets(self):
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ USER_HANDLERS_DIR = os.path.join(FTRACK_MODULE_DIR, "actions")
|
|||
|
||||
|
||||
def get_ftrack_settings():
|
||||
return get_system_settings()["modules"]["Ftrack"]
|
||||
return get_system_settings()["modules"]["ftrack"]
|
||||
|
||||
|
||||
def get_ftrack_url_from_settings():
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ def _get_template_id(renderer):
|
|||
:rtype: int
|
||||
"""
|
||||
|
||||
templates = get_system_settings()["modules"]["Muster"]["templates_mapping"]
|
||||
templates = get_system_settings()["modules"]["muster"]["templates_mapping"]
|
||||
if not templates:
|
||||
raise RuntimeError(("Muster template mapping missing in "
|
||||
"pype-settings"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue