diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-08-21 13:05:24 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-08-21 13:05:24 +0200 |
commit | a36819731b09000d747e261c0b1b935bd9e91e1a (patch) | |
tree | e5489724ef218165dcca03589def509e26be50cc /youtube_dl/extractor/escapist.py | |
parent | 181c8655c798562c85ae2af06f1ece7b01632ea9 (diff) |
[escapist] Add support for og:video:url (Fixes #3557)
Diffstat (limited to 'youtube_dl/extractor/escapist.py')
-rw-r--r-- | youtube_dl/extractor/escapist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/escapist.py b/youtube_dl/extractor/escapist.py index 272dfe1f6..476fc22b9 100644 --- a/youtube_dl/extractor/escapist.py +++ b/youtube_dl/extractor/escapist.py @@ -36,7 +36,7 @@ class EscapistIE(InfoExtractor): r'<meta name="description" content="([^"]*)"', webpage, 'description', fatal=False) - playerUrl = self._og_search_video_url(webpage, name=u'player URL') + playerUrl = self._og_search_video_url(webpage, name='player URL') title = self._html_search_regex( r'<meta name="title" content="([^"]*)"', |