summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/SimplydebridCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-09-29 22:43:17 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-09-29 22:43:17 +0200
commit3353ea228835ffa96cc73d5b5e23f6d92ba84203 (patch)
treec593079745e1a65c39bfa59b3a3b6a07e1b05486 /module/plugins/hoster/SimplydebridCom.py
parent[OpenloadIo] Cleanup (diff)
downloadpyload-3353ea228835ffa96cc73d5b5e23f6d92ba84203.tar.xz
Update hoster plugins
Diffstat (limited to 'module/plugins/hoster/SimplydebridCom.py')
-rw-r--r--module/plugins/hoster/SimplydebridCom.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hoster/SimplydebridCom.py b/module/plugins/hoster/SimplydebridCom.py
index 829609228..d26439d68 100644
--- a/module/plugins/hoster/SimplydebridCom.py
+++ b/module/plugins/hoster/SimplydebridCom.py
@@ -8,7 +8,7 @@ from module.plugins.internal.MultiHoster import MultiHoster, create_getInfo, rep
class SimplydebridCom(MultiHoster):
__name__ = "SimplydebridCom"
__type__ = "hoster"
- __version__ = "0.20"
+ __version__ = "0.21"
__status__ = "testing"
__pattern__ = r'http://\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/sd\.php'
@@ -41,11 +41,11 @@ class SimplydebridCom(MultiHoster):
self.wait(5)
- def check_file(self):
- if self.check_download({'error': "No address associated with hostname"}):
+ def check_download(self):
+ if self.check_file({'error': "No address associated with hostname"}):
self.retry(24, 3 * 60, _("Bad file downloaded"))
- return super(SimplydebridCom, self).check_file()
+ return super(SimplydebridCom, self).check_download()
getInfo = create_getInfo(SimplydebridCom)