diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-05-02 18:35:50 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-05-02 18:35:50 +0600 |
commit | 7960b0563b957d418ddd36555275d98ba4668c03 (patch) | |
tree | 5ef1c94057eba3a7bb0ac657f46cd8b471f6bdab | |
parent | 5c9ced9504bd2ceb8e55a929124aad2091b23403 (diff) |
[YoutubeDL] Properly process unable-to-download-error on python2
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 055433362..4e57c9687 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1639,7 +1639,7 @@ class YoutubeDL(object): # Just a single file success = dl(filename, info_dict) except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err: - self.report_error('unable to download video data: %s' % str(err)) + self.report_error('unable to download video data: %s' % error_to_compat_str(err)) return except (OSError, IOError) as err: raise UnavailableVideoError(err) |