summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/Hoster.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-28 00:58:56 +0100
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-28 00:58:56 +0100
commit712ec761237eb989484b8c8f84fdf2d566500482 (patch)
tree9054ca99b3bf0c0938f6bec17c129e7ccfa43c96 /module/plugins/internal/Hoster.py
parentMerge pull request #2125 from GammaC0de/patch-6 (diff)
downloadpyload-712ec761237eb989484b8c8f84fdf2d566500482.tar.xz
Fix https://github.com/pyload/pyload/issues/2112
Diffstat (limited to 'module/plugins/internal/Hoster.py')
-rw-r--r--module/plugins/internal/Hoster.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/Hoster.py b/module/plugins/internal/Hoster.py
index 130622fa9..bbe37f39f 100644
--- a/module/plugins/internal/Hoster.py
+++ b/module/plugins/internal/Hoster.py
@@ -92,7 +92,7 @@ class Hoster(Base):
try:
self.process(self.pyfile)
self.check_status()
- self._check_download()
+ self.check_download()
except Fail, e: #@TODO: Move to PluginThread in 0.4.10
if self.get_config('fallback', True) and self.premium:
@@ -349,7 +349,7 @@ class Hoster(Base):
self.last_download = "" #: Recheck in 0.4.10
- def _check_download(self):
+ def check_download(self):
self.log_info(_("Checking downloaded file..."))
if self.captcha.task and not self.last_download: