summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2016-05-10 16:10:35 +0200
committerGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2016-05-10 16:10:35 +0200
commit1d9698b1d89ab9a340498c36419f0f02fd8b3dbf (patch)
treee4501bb7a840dfb3e7db9c2ae1c312b7098dd8a5
parent[SafelinkingNet] fix #2457 (diff)
parentFix StreamCz (diff)
downloadpyload-1d9698b1d89ab9a340498c36419f0f02fd8b3dbf.tar.xz
Merge pull request #2460 from OndrejIT/stable
Fix StreamCz
-rw-r--r--module/plugins/hoster/StreamCz.py5
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)