Added a traceback for when an expansion initilisation goes wrong

This commit is contained in:
2025-07-08 10:07:34 -04:00
parent 587d93f7ea
commit bab32622ff

View File

@ -320,8 +320,9 @@ class ExpansionsManager:
def _createExpansion(self, expansionID):
try:
expansion = getattr(expansionsLib, expansionID)(expansionID, self)
except:
pass
except Exception as e:
print(f"Could not initilise {expansionID} because of traceback:")
print(e)
else:
self._activeExpansions[expansionID] = expansion