youtube-dl

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

commit 8900ab4d9bc6bf8a05a1a2608efaff08561945e8
parent fb043a6e4ee98a2ea9fbb0975e701341bbd34bc3
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 20 Dec 2015 06:22:01 +0600

[YoutubeDL] More error_to_str

Diffstat:
Myoutube_dl/YoutubeDL.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py @@ -1511,7 +1511,7 @@ class YoutubeDL(object): sub_info['url'], info_dict['id'], note=False) except ExtractorError as err: self.report_warning('Unable to download subtitle for "%s": %s' % - (sub_lang, compat_str(err.cause))) + (sub_lang, error_to_str(err.cause))) continue try: sub_filename = subtitles_filename(filename, sub_lang, sub_format)