diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-10-15 08:22:59 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-10-15 08:22:59 +0200 |
commit | 9d74e308f7caa7f649809366ebcdb5a7caf560b9 (patch) | |
tree | 4aeaf0689b48bdd252ac3f0ade1a815101f87599 /youtube_dl/extractor/sztvhu.py | |
parent | e772692ffd727631e65be90948b7e8c422738a7b (diff) |
[sztvhu] Fix the title extraction
Diffstat (limited to 'youtube_dl/extractor/sztvhu.py')
-rw-r--r-- | youtube_dl/extractor/sztvhu.py | 2 |
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="([^"]*)"/>', |