diff options
author | Stefano <l.stickell@yahoo.it> | 2014-04-18 15:59:42 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 17:23:14 +0200 |
commit | 49ca087000c296906c98fe20a6904c380a524b46 (patch) | |
tree | fd310808cd511cb5390b3f4d043ff6e5a9af5a93 | |
parent | Streamcloud: fixed #583 (diff) | |
download | pyload-49ca087000c296906c98fe20a6904c380a524b46.tar.xz |
Egofiles: fixed #583
(cherry picked from commit 874cd3f2e3deb08568e5a7384c58b09e1e23b91d)
-rw-r--r-- | pyload/plugins/hoster/EgoFilesCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hoster/EgoFilesCom.py b/pyload/plugins/hoster/EgoFilesCom.py index 886192ff8..d8168c980 100644 --- a/pyload/plugins/hoster/EgoFilesCom.py +++ b/pyload/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) |