projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afc7bc3
)
[xattr] Correct on Windows
author
Philipp Hagemeister
<phihag@phihag.de>
Tue, 7 Jan 2014 05:50:24 +0000
(06:50 +0100)
committer
Philipp Hagemeister
<phihag@phihag.de>
Tue, 7 Jan 2014 05:50:24 +0000
(06:50 +0100)
youtube_dl/postprocessor/xattrpp.py
patch
|
blob
|
history
diff --git
a/youtube_dl/postprocessor/xattrpp.py
b/youtube_dl/postprocessor/xattrpp.py
index 4317ba8366622ce7133f1d5234d13b2eb160c998..e230f2c540f453260aaabc777342a60211af092a 100644
(file)
--- 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, "w
b
") as f:
f.write(value)
else:
user_has_setfattr = check_executable("setfattr", ['--version'])