]> jfr.im git - erebus.git/blobdiff - ctlmod.py
allow passing flags to python via run.sh
[erebus.git] / ctlmod.py
index 76e72644249cec845d0ca446e7e613eb6151fa67..0a4c784510641a6779b05157fa22bcaeff5c620b 100644 (file)
--- a/ctlmod.py
+++ b/ctlmod.py
@@ -12,11 +12,14 @@ def modhas(modname, attname): return getattr(modules[modname], attname, None) is
 
 def load(parent, modname):
        if not isloaded(modname):
+               sys.path.insert(0, 'modules')
                try:
                        mod = __import__(modname)
-                       reload(mod)
+                       reload(mod) #in case it's been previously loaded.
                except BaseException as e: #we don't want even sys.exit() to crash us (in case of malicious module) so use BaseException
                        return modlib.error(e)
+               finally:
+                       del sys.path[0] #remove ./modules from path, in case there's a name conflict
                        
 
                if not hasattr(mod, 'modinfo'):
@@ -68,9 +71,10 @@ def reloadmod(parent, modname):
                except BaseException as e:
                        return modlib.error(e)
 
-               if modhas(modname, 'modrestarted'): modules[modname].modrestarted(parent)
-               else: modules[modname].modstart(parent)
+               if modhas(modname, 'modrestarted'): ret = modules[modname].modrestarted(parent)
+               else: ret = modules[modname].modstart(parent)
 
+               return ret
        else:
                return load(parent, modname)