youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit dc519b5421366a8cac681455a817ae25f7f4aa83
parent ae12bc3ebb4cb377c2b4337ec255e652b36f5143
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 31 Oct 2015 23:12:57 +0600

[extractor/common] Make ie_key and IE_NAME return unicode string

Diffstat:
Myoutube_dl/extractor/common.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -310,11 +310,11 @@ class InfoExtractor(object): @classmethod def ie_key(cls): """A string for getting the InfoExtractor with get_info_extractor""" - return cls.__name__[:-2] + return compat_str(cls.__name__[:-2]) @property def IE_NAME(self): - return type(self).__name__[:-2] + return compat_str(type(self).__name__[:-2]) def _request_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True): """ Returns the response handle """