youtube-dl

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

commit f983c4419941adfeaa42164d06d2e5e80c31f921
parent c47d21da80c0a616410ca6c0d61d7ccfed36e943
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed,  9 Apr 2014 10:16:06 +0200

Merge pull request #2725 from foolscap/subtitles-error-fix

Fix subtitle download error reporting (Fixes #2724)
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 @@ -936,7 +936,7 @@ class YoutubeDL(object): with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile: subfile.write(sub) except (OSError, IOError): - self.report_error('Cannot write subtitles file ' + descfn) + self.report_error('Cannot write subtitles file ' + sub_filename) return if self.params.get('writeinfojson', False):