[util] Move compatibility functions out of util
[youtube-dl] / youtube_dl / postprocessor / xattrpp.py
index f6940940b340dea5c23e5ce118b8fcc4d7ee8574..b5cae41c8cd061a494a722c1db4261e3eca597b8 100644 (file)
@@ -3,10 +3,12 @@ import subprocess
 import sys
 
 from .common import PostProcessor
+from ..compat import (
+    subprocess_check_output
+)
 from ..utils import (
     check_executable,
     hyphenate_date,
-    subprocess_check_output
 )