From c85ce2b1586dafb1dc4cfe507329ca682b2b6aa1 Mon Sep 17 00:00:00 2001 From: Schrolli Date: Fri, 22 May 2015 09:59:29 +0200 Subject: [PATCH] little error in pluginloader.py --- pluginloader.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pluginloader.py b/pluginloader.py index d3383bc..d3efc6b 100644 --- a/pluginloader.py +++ b/pluginloader.py @@ -20,7 +20,6 @@ def getPlugins(): # is the plugin enabled in the config-file? try: - logging.debug("Plugin [DISABLED] %s ", i) if globals.config.getint("Plugins", i): info = imp.find_module(i, [location]) plugins.append({"name": i, "info": info})