diff options
author | stickell <l.stickell@yahoo.it> | 2014-04-18 15:56:07 +0200 |
---|---|---|
committer | stickell <l.stickell@yahoo.it> | 2014-04-18 15:56:07 +0200 |
commit | 8dc381adbdc0f88c838749ec4ef9b78708b9da36 (patch) | |
tree | 4e75d5e59ff931702787b4645f681f7f3ac2fb68 /module | |
parent | Czshare renamed to Sdilej (diff) | |
download | pyload-8dc381adbdc0f88c838749ec4ef9b78708b9da36.tar.xz |
Streamcloud: fixed #583
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/StreamcloudEu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/StreamcloudEu.py b/module/plugins/hoster/StreamcloudEu.py index 284054c15..388eb7876 100644 --- a/module/plugins/hoster/StreamcloudEu.py +++ b/module/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() |