about summary refs log tree commit diff
path: root/youtube_dl/extractor/karrierevideos.py
diff options
context:
space:
mode:
authorRobin Neatherway <robin.neatherway@gmail.com>2017-07-14 17:08:32 +0100
committerSergey M <dstftw@gmail.com>2017-07-14 23:08:32 +0700
commit2583c0b54e56f6dbce85a079d91a05e9b13c2dce (patch)
tree21e9243f7e79e7186bdb23eff2c24da22cad312d /youtube_dl/extractor/karrierevideos.py
parent7d02dcfaa2589453ee3cc6c88ee27f04c252f8a7 (diff)
downloadyoutube-dl-2583c0b54e56f6dbce85a079d91a05e9b13c2dce.tar.gz
youtube-dl-2583c0b54e56f6dbce85a079d91a05e9b13c2dce.tar.xz
youtube-dl-2583c0b54e56f6dbce85a079d91a05e9b13c2dce.zip
Fix bugs caused by typos
Diffstat (limited to 'youtube_dl/extractor/karrierevideos.py')
-rw-r--r--youtube_dl/extractor/karrierevideos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/karrierevideos.py b/youtube_dl/extractor/karrierevideos.py
index 4e9eb67bf..f236a2f78 100644
--- a/youtube_dl/extractor/karrierevideos.py
+++ b/youtube_dl/extractor/karrierevideos.py
@@ -48,7 +48,7 @@ class KarriereVideosIE(InfoExtractor):
         webpage = self._download_webpage(url, video_id)
 
         title = (self._html_search_meta('title', webpage, default=None) or
-                 self._search_regex(r'<h1 class="title">([^<]+)</h1>'))
+                 self._search_regex(r'<h1 class="title">([^<]+)</h1>', webpage, 'video title'))
 
         video_id = self._search_regex(
             r'/config/video/(.+?)\.xml', webpage, 'video id')