diff options
author | 2015-08-02 07:44:07 +0200 | |
---|---|---|
committer | 2015-08-02 07:44:07 +0200 | |
commit | 84f2193d76f7c6f47c834dc8902d8ead8e45a11a (patch) | |
tree | abcb748a676991f5987a8cd78a0814889d175656 /module/plugins/internal/Hoster.py | |
parent | [AntiStandby] Improve linux_standby (diff) | |
download | pyload-84f2193d76f7c6f47c834dc8902d8ead8e45a11a.tar.xz |
Fix https://github.com/pyload/pyload/issues/1640 (2)
Diffstat (limited to 'module/plugins/internal/Hoster.py')
-rw-r--r-- | module/plugins/internal/Hoster.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/module/plugins/internal/Hoster.py b/module/plugins/internal/Hoster.py index d707154bb..edc6f5d30 100644 --- a/module/plugins/internal/Hoster.py +++ b/module/plugins/internal/Hoster.py @@ -43,7 +43,7 @@ def create_getInfo(klass): class Hoster(Plugin): __name__ = "Hoster" __type__ = "hoster" - __version__ = "0.16" + __version__ = "0.17" __status__ = "testing" __pattern__ = r'^unmatchable$' @@ -58,8 +58,7 @@ class Hoster(Plugin): def __init__(self, pyfile): - self.pyload = pyfile.m.core - self.info = {} #: Provide information in dict here + self._init(pyfile.m.core) #: Engage wan reconnection self.wantReconnect = False #@TODO: Change to `want_reconnect` in 0.4.10 |