aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/oktoberfesttv.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/oktoberfesttv.py')
-rw-r--r--hypervideo_dl/extractor/oktoberfesttv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hypervideo_dl/extractor/oktoberfesttv.py b/hypervideo_dl/extractor/oktoberfesttv.py
index a914068..2765674 100644
--- a/hypervideo_dl/extractor/oktoberfesttv.py
+++ b/hypervideo_dl/extractor/oktoberfesttv.py
@@ -25,8 +25,8 @@ class OktoberfestTVIE(InfoExtractor):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
- title = self._live_title(self._html_search_regex(
- r'<h1><strong>.*?</strong>(.*?)</h1>', webpage, 'title'))
+ title = self._html_search_regex(
+ r'<h1><strong>.*?</strong>(.*?)</h1>', webpage, 'title')
clip = self._search_regex(
r"clip:\s*\{\s*url:\s*'([^']+)'", webpage, 'clip')