summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/EgoFilesCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/hoster/EgoFilesCom.py')
-rw-r--r--pyload/plugins/hoster/EgoFilesCom.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyload/plugins/hoster/EgoFilesCom.py b/pyload/plugins/hoster/EgoFilesCom.py
index 5d02d244e..035102c3c 100644
--- a/pyload/plugins/hoster/EgoFilesCom.py
+++ b/pyload/plugins/hoster/EgoFilesCom.py
@@ -57,8 +57,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.setWait(waittime, True)
- self.wait()
+ self.wait((waittime, True)
downloadURL = ''
recaptcha = ReCaptcha(self)