Don't load options twice

This commit is contained in:
Ruud
2013-08-25 00:59:37 +02:00
parent 65896497fb
commit cbd217271d
2 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ class Plugin(object):
http_failed_disabled = {}
def __new__(typ, *args, **kwargs):
new_plugin = super(Plugin, typ).__new__(typ, *args, **kwargs)
new_plugin = super(Plugin, typ).__new__(typ)
new_plugin.registerPlugin()
return new_plugin