diff options
Diffstat (limited to 'module/PluginManager.py')
-rw-r--r-- | module/PluginManager.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/module/PluginManager.py b/module/PluginManager.py index 29c01ce21..ae516e0ec 100644 --- a/module/PluginManager.py +++ b/module/PluginManager.py @@ -165,12 +165,14 @@ class PluginManager(): config = self.reConfig.findall(content) if config: - config = [ [y.strip() for y in x.replace("'","").replace('"',"").replace(")","").split(",")] for x in config[0].split("(") if x.strip()] - + print config + config = [ [y.strip() for y in x.replace("'","").replace('"',"").replace("\") ","").split(",")] for x in config[0].split(" (\"") if x.strip()] + print config if folder == "hooks": config.append( ["load", "bool", "Load on startup", True if name not in ("XMPPInterface", "MultiHome") else False] ) for item in config: + #~ print item self.core.config.addPluginConfig([name]+item) if not home: |