def load_variant(self, item):
     try:
         self._load_variant(item)
         # raise Exception()
     except Exception:
         traceback.print_exc()
         LauncherConfig.load_default_config()
         LauncherConfig.load({"__error": "Error Loading Configuration"})
         self.select_item(None)
Exemplo n.º 2
0
 def run_config_directly_with_values(cls, values):
     LauncherConfig.load(values)
     return cls.run_config_directly()
Exemplo n.º 3
0
 def run_config_directly_with_values(cls, values):
     LauncherConfig.load(values)
     LauncherConfig.post_load_values(values)
     return cls.run_config_directly()