summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2015-06-06 10:29:24 +0200
committerDico200 <dico.karssiens@gmail.com>2015-06-06 10:29:24 +0200
commit778fd0234e6998a55820e58fb52fd0743eb60538 (patch)
treea545aa526e0e3738565f56627b7d80827d6e8543 /main.py
parent1b5f07f7aa44afb989b822fe73b8eae51391d3f7 (diff)
Fix /up
Tried a lot of shit but these 3 lines should do it.
Diffstat (limited to 'main.py')
-rw-r--r--main.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.py b/main.py
index 4f06411..92c7315 100644
--- a/main.py
+++ b/main.py
@@ -30,6 +30,8 @@ def on_disable():
info("Loading RedstonerUtils...")
+
+
# Import all modules, in this order
shared["load_modules"] = [
# Collection of tiny utilities
@@ -80,6 +82,7 @@ shared["load_modules"] = [
#"loginsecurity"
# NOTICE: If you add something here, please add a small descriptive comment above!
]
+
shared["modules"] = {}
for module in shared["load_modules"]:
try:
@@ -87,4 +90,5 @@ for module in shared["load_modules"]:
info("Module %s loaded." % module)
except:
error("Failed to import module %s:" % module)
- error(print_traceback()) \ No newline at end of file
+ error(print_traceback())
+