diff options
Diffstat (limited to 'module/plugins/Plugin.py')
-rw-r--r-- | module/plugins/Plugin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index 0df3519fc..267ce57d5 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -109,7 +109,7 @@ class Plugin(object): self.lastDownload = "" # location where the last call to download was saved self.js = self.core.js # js engine - self.setup() + #self.setup() def __call__(self): return self.__name__ @@ -126,6 +126,7 @@ class Plugin(object): def preprocessing(self, thread): """ handles important things to do before starting """ + self.setup() self.thread = thread if self.account: |