summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-07 06:50:24 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-07 06:50:24 +0100
commita9ce0c631eccd7c2f84d23b50bb478493ff0338c (patch)
treebfd4b5f04bb366456c36632ee7a40247c214e5dd
parentafc7bc33cb8dc63a5e3495e7e11b47f84d89be23 (diff)
downloadyoutube-dl-a9ce0c631eccd7c2f84d23b50bb478493ff0338c.tar.gz
youtube-dl-a9ce0c631eccd7c2f84d23b50bb478493ff0338c.tar.xz
youtube-dl-a9ce0c631eccd7c2f84d23b50bb478493ff0338c.zip
[xattr] Correct on Windows
-rw-r--r--youtube_dl/postprocessor/xattrpp.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/youtube_dl/postprocessor/xattrpp.py b/youtube_dl/postprocessor/xattrpp.py
index 4317ba836..e230f2c54 100644
--- a/youtube_dl/postprocessor/xattrpp.py
+++ b/youtube_dl/postprocessor/xattrpp.py
@@ -40,12 +40,11 @@ class XAttrMetadataPP(PostProcessor):
                 # Write xattrs to NTFS Alternate Data Streams:
                 # http://en.wikipedia.org/wiki/NTFS#Alternate_data_streams_.28ADS.29
                 def write_xattr(path, key, value):
-                    assert(key.find(":") < 0)
-                    assert(path.find(":") < 0)
-                    assert(os.path.exists(path))
+                    assert ':' not in key
+                    assert os.path.exists(path)
 
                     ads_fn = path + ":" + key
-                    with open(ads_fn, "w") as f:
+                    with open(ads_fn, "wb") as f:
                         f.write(value)
             else:
                 user_has_setfattr = check_executable("setfattr", ['--version'])