summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/DeadHoster.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-05-18 11:50:43 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-05-18 11:50:43 +0200
commit339b2e07d78b15ca014ee12f1501cdb235d9b064 (patch)
tree98964f4fe5ef2d9b584a5de291d4ff719903a836 /module/plugins/internal/DeadHoster.py
parent[XFSHoster] Fix https://github.com/pyload/pyload/issues/1296 (diff)
downloadpyload-339b2e07d78b15ca014ee12f1501cdb235d9b064.tar.xz
[SimpleHoster] Fix create_getInfo
Diffstat (limited to 'module/plugins/internal/DeadHoster.py')
-rw-r--r--module/plugins/internal/DeadHoster.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/internal/DeadHoster.py b/module/plugins/internal/DeadHoster.py
index a6ad92607..f159ae5fa 100644
--- a/module/plugins/internal/DeadHoster.py
+++ b/module/plugins/internal/DeadHoster.py
@@ -7,7 +7,7 @@ from module.plugins.Hoster import Hoster as _Hoster
class DeadHoster(_Hoster):
__name__ = "DeadHoster"
__type__ = "hoster"
- __version__ = "0.14"
+ __version__ = "0.15"
__pattern__ = r'^unmatchable$'
@@ -17,8 +17,8 @@ class DeadHoster(_Hoster):
@classmethod
- def apiInfo(cls, url="", get={}, post={}):
- api = super(DeadHoster, self).apiInfo(url, get, post)
+ def apiInfo(cls, url):
+ api = super(DeadHoster, cls).apiInfo(url)
api['status'] = 1
return api