diff options
author | Stefano <l.stickell@yahoo.it> | 2013-11-21 18:38:23 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-11-21 18:38:23 +0100 |
commit | bea7fe466f5cd1f1aa6ddc72bc0fb5651610a121 (patch) | |
tree | c3ac5972b2df2a47ded36b203516ef8a26a08d2f /module/plugins/hoster | |
parent | Merged #407 (diff) | |
parent | Removed unnecessary assignments for self.html and self.wantReconnect (diff) | |
download | pyload-bea7fe466f5cd1f1aa6ddc72bc0fb5651610a121.tar.xz |
Merge pull request #386 from vuolter/s/setup_clean
Removed unnecessary assignments for self.html and self.wantReconnect
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/FreakshareCom.py | 2 | ||||
-rw-r--r-- | module/plugins/hoster/HotfileCom.py | 1 | ||||
-rw-r--r-- | module/plugins/hoster/NowDownloadEu.py | 1 | ||||
-rw-r--r-- | module/plugins/hoster/RapidshareCom.py | 1 | ||||
-rw-r--r-- | module/plugins/hoster/VeehdCom.py | 1 |
5 files changed, 0 insertions, 6 deletions
diff --git a/module/plugins/hoster/FreakshareCom.py b/module/plugins/hoster/FreakshareCom.py index cb84a468a..d69a95343 100644 --- a/module/plugins/hoster/FreakshareCom.py +++ b/module/plugins/hoster/FreakshareCom.py @@ -16,8 +16,6 @@ class FreakshareCom(Hoster): __author_mail__ = ("sitacuisses@yahoo.de", "spoob@pyload.org", "mkaay@mkaay.de", "toilal.dev@gmail.com") def setup(self): - self.html = None - self.wantReconnect = False self.multiDL = False self.req_opts = [] diff --git a/module/plugins/hoster/HotfileCom.py b/module/plugins/hoster/HotfileCom.py index 6053ec1b6..6c51ef03d 100644 --- a/module/plugins/hoster/HotfileCom.py +++ b/module/plugins/hoster/HotfileCom.py @@ -44,7 +44,6 @@ class HotfileCom(Hoster): def setup(self): self.html = [None, None] - self.wantReconnect = False self.htmlwithlink = None self.url = None diff --git a/module/plugins/hoster/NowDownloadEu.py b/module/plugins/hoster/NowDownloadEu.py index fbe0c7cfb..ff7d237f5 100644 --- a/module/plugins/hoster/NowDownloadEu.py +++ b/module/plugins/hoster/NowDownloadEu.py @@ -40,7 +40,6 @@ class NowDownloadEu(SimpleHoster): FILE_NAME_REPLACEMENTS = [("&#?\w+;", fixup), (r'<[^>]*>', '')] def setup(self): - self.wantReconnect = False self.multiDL = self.resumeDownload = True self.chunkLimit = -1 diff --git a/module/plugins/hoster/RapidshareCom.py b/module/plugins/hoster/RapidshareCom.py index 9828bf4ce..05adb9fe2 100644 --- a/module/plugins/hoster/RapidshareCom.py +++ b/module/plugins/hoster/RapidshareCom.py @@ -62,7 +62,6 @@ class RapidshareCom(Hoster): __author_mail__ = ("spoob@pyload.org", "ranan@pyload.org", "mkaay@mkaay.de") def setup(self): - self.html = None self.no_download = True self.api_data = None self.offset = 0 diff --git a/module/plugins/hoster/VeehdCom.py b/module/plugins/hoster/VeehdCom.py index 88bcb20ad..3648ef4ec 100644 --- a/module/plugins/hoster/VeehdCom.py +++ b/module/plugins/hoster/VeehdCom.py @@ -21,7 +21,6 @@ class VeehdCom(Hoster): self.logDebug('[%s] %s' % (self.__name__, msg)) def setup(self): - self.html = None self.multiDL = True self.req.canContinue = True |