diff options
author | OndrejIT <git@ondrej.it> | 2016-05-10 16:04:17 +0200 |
---|---|---|
committer | OndrejIT <git@ondrej.it> | 2016-05-10 16:04:17 +0200 |
commit | a7e3f8cc5ddaadb456b51c2490fb33cb5191728c (patch) | |
tree | e4501bb7a840dfb3e7db9c2ae1c312b7098dd8a5 | |
parent | [SafelinkingNet] fix #2457 (diff) | |
download | pyload-a7e3f8cc5ddaadb456b51c2490fb33cb5191728c.tar.xz |
Fix StreamCz
-rw-r--r-- | module/plugins/hoster/StreamCz.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hoster/StreamCz.py b/module/plugins/hoster/StreamCz.py index 10c5f5067..fc00c0776 100644 --- a/module/plugins/hoster/StreamCz.py +++ b/module/plugins/hoster/StreamCz.py @@ -53,7 +53,7 @@ def get_link_quality(videos, quality): class StreamCz(SimpleHoster): __name__ = "StreamCz" __type__ = "hoster" - __version__ = "0.36" + __version__ = "0.37" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?stream\.cz/[^/]+/(?P<EP>\d+).+' @@ -89,4 +89,5 @@ class StreamCz(SimpleHoster): link_name, container = os.path.splitext(link) self.pyfile.name = data["name"] + container - self.link = link + self.log_info(_("Downloading file...")) + self.download(link) |