summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2014-04-18 15:59:42 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-18 15:59:42 +0200
commit874cd3f2e3deb08568e5a7384c58b09e1e23b91d (patch)
treed18195d0a9a3400b6aa4f9506b22bbb7f9b2505e /module
parentStreamcloud: fixed #583 (diff)
downloadpyload-874cd3f2e3deb08568e5a7384c58b09e1e23b91d.tar.xz
Egofiles: fixed #583
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hoster/EgoFilesCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/EgoFilesCom.py b/module/plugins/hoster/EgoFilesCom.py
index 886192ff8..d8168c980 100644
--- a/module/plugins/hoster/EgoFilesCom.py
+++ b/module/plugins/hoster/EgoFilesCom.py
@@ -27,7 +27,7 @@ class EgoFilesCom(SimpleHoster):
__name__ = "EgoFilesCom"
__type__ = "hoster"
__pattern__ = r'https?://(?:www\.)?egofiles.com/(\w+)'
- __version__ = "0.13"
+ __version__ = "0.14"
__description__ = """Egofiles.com hoster plugin"""
__author_name__ = "stickell"
__author_mail__ = "l.stickell@yahoo.it"
@@ -56,7 +56,7 @@ class EgoFilesCom(SimpleHoster):
if 'For next free download you have to wait' in self.html:
m = re.search(self.WAIT_TIME_PATTERN, self.html).groupdict('0')
waittime = int(m['m']) * 60 + int(m['s'])
- self.wait((waittime, True)
+ self.wait(waittime, True)
downloadURL = ''
recaptcha = ReCaptcha(self)