summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-11-12 15:30:26 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-11-12 15:30:26 +0100
commitc6afed48ff0a5b42d14227bd7e52e009345776e6 (patch)
treebfef732551147cc11670d51514ea4f670a957e1c
parent732c848c14af4b0c1c80176cc99588049dc837b3 (diff)
downloadyoutube-dl-c6afed48ff0a5b42d14227bd7e52e009345776e6.tar.gz
youtube-dl-c6afed48ff0a5b42d14227bd7e52e009345776e6.tar.xz
youtube-dl-c6afed48ff0a5b42d14227bd7e52e009345776e6.zip
[YoutubeDL] guard against strange sys.stdouts
-rwxr-xr-xyoutube_dl/YoutubeDL.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 7951001fa..5c875b497 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -1306,11 +1306,13 @@ class YoutubeDL(object):
             self.report_warning(
                 'Your Python is broken! Update to a newer and supported version')
 
+        stdout_encoding = getattr(
+            sys.stdout, 'encoding', 'missing (%s)' % type(sys.stdout).__name__)
         encoding_str = (
             '[debug] Encodings: locale %s, fs %s, out %s, pref %s\n' % (
                 locale.getpreferredencoding(),
                 sys.getfilesystemencoding(),
-                sys.stdout.encoding,
+                stdout_encoding,
                 self.get_encoding()))
         write_string(encoding_str, encoding=None)