summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorDico200 <dico.karssiens@gmail.com>2015-11-26 17:41:47 +0100
committerDico200 <dico.karssiens@gmail.com>2015-11-26 17:41:47 +0100
commit4027cf7268c09205a67d2e0234a7f94dd93925d1 (patch)
treea105774e0d7d3ec74119462d6d9e08be251ab6e8 /main.py
parentc76f8373ef58dccb4932c9b945ede99f6bf97456 (diff)
Fix most of wrapper_commandwrapper
Diffstat (limited to 'main.py')
-rw-r--r--main.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/main.py b/main.py
index 08ab182..5e2e0a0 100644
--- a/main.py
+++ b/main.py
@@ -11,12 +11,10 @@ sys.path += ['', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-linux2', '/usr/l
try:
# Library that adds a bunch of re-usable methods which are used in nearly all other modules
from helpers import *
- from wrapper import *
+ #from wrapper import *
except:
- print("[RedstonerUtils] ERROR: Failed to import Wrapper:")
- print(print_traceback())
-
-
+ error("[RedstonerUtils] ERROR: Failed to import Wrapper:")
+ error(print_traceback())
@hook.enable
def on_enable():
@@ -34,7 +32,10 @@ info("Loading RedstonerUtils...")
# Import all modules, in this order
-shared["load_modules"] = ["test", "login"]
+shared["load_modules"] = [
+ "test",
+# "login",
+]
shared["modules"] = {}
for module in shared["load_modules"]: