diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-23 04:32:27 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-23 04:32:27 +0200 |
commit | 3758f5e1dfccc70e4bb733e4e6a5932967bbf787 (patch) | |
tree | ec63a2793dcb45f0ab99332c0155572e3c62e129 /module/plugins/hoster/StreamcloudEu.py | |
parent | [SimpleCrypter] check_errors (diff) | |
download | pyload-3758f5e1dfccc70e4bb733e4e6a5932967bbf787.tar.xz |
Fix XFS plugins
Diffstat (limited to 'module/plugins/hoster/StreamcloudEu.py')
-rw-r--r-- | module/plugins/hoster/StreamcloudEu.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/StreamcloudEu.py b/module/plugins/hoster/StreamcloudEu.py index a440ebc88..be72b8a26 100644 --- a/module/plugins/hoster/StreamcloudEu.py +++ b/module/plugins/hoster/StreamcloudEu.py @@ -8,7 +8,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class StreamcloudEu(XFSHoster): __name__ = "StreamcloudEu" __type__ = "hoster" - __version__ = "0.12" + __version__ = "0.13" __status__ = "testing" __pattern__ = r'http://(?:www\.)?streamcloud\.eu/\w{12}' @@ -19,6 +19,8 @@ class StreamcloudEu(XFSHoster): __authors__ = [("seoester", "seoester@googlemail.com")] + PLUGIN_DOMAIN = "streamcloud.eu" + WAIT_PATTERN = r'var count = (\d+)' |