diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-08-02 01:20:49 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-08-02 01:20:49 +0600 |
commit | 41c3a5a7beebbf5f60c5edb5093d564f0829c5c1 (patch) | |
tree | dfc79175edddb44b9481874d97900422e8445161 /youtube_dl | |
parent | 8765222d2211cd6f2a40611249181af0bbb2d531 (diff) |
[extractor/common] Fix python 3
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index f9578b838..c123d9fca 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1101,7 +1101,7 @@ class InfoExtractor(object): 'plugin': 'flowplayer-3.2.0.1', } f4m_url += '&' if '?' in f4m_url else '?' - f4m_url += compat_urllib_parse.urlencode(f4m_params).encode('utf-8') + f4m_url += compat_urllib_parse.urlencode(f4m_params) formats.extend(self._extract_f4m_formats(f4m_url, video_id, f4m_id='hds')) continue |