Merge pull request #819 from pypeclub/bugfix/module_keys_fix

Module keys fix
This commit is contained in:
Milan Kolar 2020-12-15 13:46:53 +01:00 committed by GitHub
commit 196d5945fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -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):

View file

@ -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():

View file

@ -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"))