summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-10-15 08:22:59 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-10-15 08:22:59 +0200
commit9d74e308f7caa7f649809366ebcdb5a7caf560b9 (patch)
tree4aeaf0689b48bdd252ac3f0ade1a815101f87599
parente772692ffd727631e65be90948b7e8c422738a7b (diff)
downloadyoutube-dl-9d74e308f7caa7f649809366ebcdb5a7caf560b9.tar.gz
youtube-dl-9d74e308f7caa7f649809366ebcdb5a7caf560b9.tar.xz
youtube-dl-9d74e308f7caa7f649809366ebcdb5a7caf560b9.zip
[sztvhu] Fix the title extraction
-rw-r--r--youtube_dl/extractor/sztvhu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/sztvhu.py b/youtube_dl/extractor/sztvhu.py
index cd3e203e6..81fa35c4b 100644
--- a/youtube_dl/extractor/sztvhu.py
+++ b/youtube_dl/extractor/sztvhu.py
@@ -25,7 +25,7 @@ class SztvHuIE(InfoExtractor):
         video_file = self._search_regex(
             r'file: "...:(.*?)",', webpage, 'video file')
         title = self._html_search_regex(
-            r'<meta name="title" content="([^"]*) - [^-]*"',
+            r'<meta name="title" content="([^"]*?) - [^-]*? - [^-]*?"',
             webpage, 'video title')
         description = self._html_search_regex(
             r'<meta name="description" content="([^"]*)"/>',