diff --git a/CuraSettingsGuide.py b/CuraSettingsGuide.py index 26d07ef62..881c23135 100644 --- a/CuraSettingsGuide.py +++ b/CuraSettingsGuide.py @@ -80,8 +80,7 @@ def load_window(self): Do all the things necessary to start using the guide. """ #Load a special definition container that also contains extra entries for the guide entries that are not settings. - settings_guide_filename = "settings_guide_definitions_{n}.def.json".format(n=DefinitionContainer.Version * 1000000 + CuraApplication.SettingVersion) - with open(os.path.join(os.path.dirname(__file__), "resources", settings_guide_filename)) as f: + with open(os.path.join(os.path.dirname(__file__), "resources", "settings_guide_definitions.def.json")) as f: definitions_serialised = f.read() definition_container = DefinitionContainer("settings_guide_definitions") definition_container.deserialize(definitions_serialised)