]> gitweb @ CieloNegro.org - youtube-dl.git/blobdiff - youtube_dl/utils.py
Merge remote-tracking branch 'jnormore/vine_user'
[youtube-dl.git] / youtube_dl / utils.py
index 2a93d3e34a13d473c9438dced5a3051338325708..1036ea9bd87789bca51e8cbc2b8091e7b5f96bc3 100644 (file)
@@ -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