youtube-dl

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

commit f07a9f6f4347facde15a0cca9560119f0b6f8a94
parent e51880fd32c2087885b203f7dffd48c01b68d99a
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 21 Apr 2014 12:34:32 +0200

[ted] Remove superfluous u prefixes

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

diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py @@ -97,7 +97,7 @@ class TEDIE(SubtitlesInfoExtractor): playlist_info = info['playlist'] playlist_entries = [ - self.url_result(u'http://www.ted.com/talks/' + talk['slug'], self.ie_key()) + self.url_result('http://www.ted.com/talks/' + talk['slug'], self.ie_key()) for talk in info['talks'] ] return self.playlist_result( @@ -163,7 +163,7 @@ class TEDIE(SubtitlesInfoExtractor): sub_lang_list[l] = url return sub_lang_list else: - self._downloader.report_warning(u'video doesn\'t have subtitles') + self._downloader.report_warning('video doesn\'t have subtitles') return {} def _watch_info(self, url, name):