summary refs log tree commit diff
diff options
context:
space:
mode:
authorrobbie <robbie@prelab.net>2014-04-08 15:55:55 +0100
committerrobbie <robbie@prelab.net>2014-04-08 15:59:27 +0100
commite4db19511af41d4336390b1a59d6d3a1b0e0ae60 (patch)
tree671a841838592027b1e8bc7e08787b98d3129eac
parentc47d21da80c0a616410ca6c0d61d7ccfed36e943 (diff)
downloadyoutube-dl-e4db19511af41d4336390b1a59d6d3a1b0e0ae60.tar.gz
youtube-dl-e4db19511af41d4336390b1a59d6d3a1b0e0ae60.tar.xz
youtube-dl-e4db19511af41d4336390b1a59d6d3a1b0e0ae60.zip
Fix subtitle download error reporting (Fixes #2724)
-rwxr-xr-x[-rw-r--r--]youtube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index bd7497f85..d4dd05d8c 100644..100755
--- 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):