diff options
author | stickell <l.stickell@yahoo.it> | 2014-04-18 15:56:07 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 17:23:11 +0200 |
commit | 5d4b2f60455e1eb071d18286facb3aff18ec2fe9 (patch) | |
tree | e8df2551f92d7d33774e0e40d47cacc92e4a8216 | |
parent | Czshare renamed to Sdilej (diff) | |
download | pyload-5d4b2f60455e1eb071d18286facb3aff18ec2fe9.tar.xz |
Streamcloud: fixed #583
(cherry picked from commit 8dc381adbdc0f88c838749ec4ef9b78708b9da36)
-rw-r--r-- | pyload/plugins/hoster/StreamcloudEu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hoster/StreamcloudEu.py b/pyload/plugins/hoster/StreamcloudEu.py index 284054c15..388eb7876 100644 --- a/pyload/plugins/hoster/StreamcloudEu.py +++ b/pyload/plugins/hoster/StreamcloudEu.py @@ -11,7 +11,7 @@ class StreamcloudEu(XFileSharingPro): __name__ = "StreamcloudEu" __type__ = "hoster" __pattern__ = r'http://(?:www\.)?streamcloud\.eu/\S+' - __version__ = "0.03" + __version__ = "0.04" __description__ = """Streamcloud.eu hoster plugin""" __author_name__ = "seoester" __author_mail__ = "seoester@googlemail.com" @@ -55,7 +55,7 @@ class StreamcloudEu(XFileSharingPro): return found.group(1) def getPostParameters(self): - for _ in xrange(3): + for i in xrange(3): if not self.errmsg: self.checkErrors() |