[gorillavid] Update IE_DESC
[youtube-dl] / youtube_dl / postprocessor / xattrpp.py
index 18979241cd9f0bb70cf2d8e9c00709ec43db1fea..d1991c4f8e0b6c02d9a9ac36c11cc5009ee3ed85 100644 (file)
@@ -3,6 +3,9 @@ import subprocess
 import sys
 
 from .common import PostProcessor
+from ..compat import (
+    subprocess_check_output
+)
 from ..utils import (
     check_executable,
     hyphenate_date,
@@ -57,7 +60,7 @@ class XAttrMetadataPP(PostProcessor):
                         elif user_has_xattr:
                             cmd = ['xattr', '-w', key, value, path]
 
-                        subprocess.check_output(cmd)
+                        subprocess_check_output(cmd)
 
                 else:
                     # On Unix, and can't find pyxattr, setfattr, or xattr.
@@ -105,4 +108,3 @@ class XAttrMetadataPP(PostProcessor):
         except (subprocess.CalledProcessError, OSError):
             self._downloader.report_error("This filesystem doesn't support extended attributes. (You may have to enable them in your /etc/fstab)")
             return False, info
-