diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-06-25 02:09:48 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-06-28 20:07:18 +0200 |
commit | 3a6ab1fb206e63e96847647b6f301e4159be768a (patch) | |
tree | 05514353f24dc9f30608071c37a16854bb7a19bd /module | |
parent | Fix account representation in web interface (by wurfkeks) (diff) | |
download | pyload-3a6ab1fb206e63e96847647b6f301e4159be768a.tar.xz |
Call initPeriodical after setup in Hook.py
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/Hook.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/Hook.py b/module/plugins/Hook.py index 6f5abffed..31f8d60f4 100644 --- a/module/plugins/Hook.py +++ b/module/plugins/Hook.py @@ -88,8 +88,9 @@ class Hook(Base): self.event_list = None - self.initPeriodical() self.setup() + self.initPeriodical() + def initPeriodical(self): if self.interval >=1: |