From: Philipp Hagemeister Date: Wed, 30 Apr 2014 08:07:32 +0000 (+0200) Subject: [utils/_windows_write_string] Be defensive about fileno (Fixes #2820) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=a383a98af617265803cbfa38f540d5f412899c3c;p=youtube-dl [utils/_windows_write_string] Be defensive about fileno (Fixes #2820) --- diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 2a93d3e34..1036ea9bd 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -926,7 +926,11 @@ def _windows_write_string(s, out): 2: -12, } - fileno = out.fileno() + try: + fileno = out.fileno() + except AttributeError: + # If the output stream doesn't have a fileno, it's virtual + return False if fileno not in WIN_OUTPUT_IDS: return False