diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-01-30 00:26:33 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-01-30 00:26:33 +0600 |
commit | 68a0ea15b4c20ed0174a82ee79a6d3c3474b0f69 (patch) | |
tree | e3baf59aab388ab0fde4c9029270c44eca03693a /youtube_dl | |
parent | 2b4f5e68d1517bcadac4b25ecbac3b143104b1c4 (diff) |
[cspan] Unescape path (Closes #8365)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/cspan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cspan.py b/youtube_dl/extractor/cspan.py index b78edf729..b8b9d058d 100644 --- a/youtube_dl/extractor/cspan.py +++ b/youtube_dl/extractor/cspan.py @@ -113,7 +113,7 @@ class CSpanIE(InfoExtractor): 'tbr': int_or_none(get_text_attr(quality, 'bitrate')), }) if not formats: - path = get_text_attr(f, 'path') + path = unescapeHTML(get_text_attr(f, 'path')) if not path: continue formats = self._extract_m3u8_formats( |