1
0
mirror of synced 2025-01-19 06:27:24 +01:00

Utils: exclude malformed game folders

This commit is contained in:
Kevin Trocolli 2023-04-15 00:12:45 -04:00
parent 0d5567c990
commit baa885f674

View File

@ -16,7 +16,8 @@ class Utils:
if not dir.startswith("__"):
try:
mod = importlib.import_module(f"titles.{dir}")
ret[dir] = mod
if hasattr(mod, "game_codes") and hasattr(mod, "index"): # Minimum required to function
ret[dir] = mod
except ImportError as e:
logging.getLogger("core").error(f"get_all_titles: {dir} - {e}")