Added a traceback for when an expansion initilisation goes wrong
This commit is contained in:
@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user