diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-18 10:52:11 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-10-18 10:52:11 +0200 |
commit | 01da7eb561776ee706c1fd74e49a1b1664951d76 (patch) | |
tree | aa413795fe1e518657d4d234066a82400f56c2ed /module/plugins/Plugin.py | |
parent | rs fix, more cleanup stuff (diff) | |
download | pyload-01da7eb561776ee706c1fd74e49a1b1664951d76.tar.xz |
closed #157, account request cleanup
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: |