We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5df506 commit 3dc92d3Copy full SHA for 3dc92d3
modloader/__init__.py
@@ -28,12 +28,8 @@ def get_mod_path():
28
29
# Try importing the mod. If all goes well, the mod is imported through the Mod class
30
print("Begin mod load: {}".format(mod))
31
- try:
32
- importlib.import_module(mod)
33
- except Exception, e:
34
- print("Exception while loading: {}".format(mod))
35
- print(e)
36
- raise e # Raise it again even though the stacktrace provides nothing useful
+ #try:
+ importlib.import_module(mod)
37
38
# After all mods are loaded, call their respective mod_complete functions
39
for mod_name, mod in modinfo.get_mods().iteritems():
0 commit comments