Fix imports and general cleanup
[youtube-dl] / youtube_dl / extractor / vevo.py
index c912c3cbe7ae42b221816b50ec6a97139cb13d55..43f6b029da8ff5df7fe808c11a85f8a8120f8ca5 100644 (file)
@@ -4,8 +4,10 @@ import re
 import xml.etree.ElementTree
 
 from .common import InfoExtractor
-from ..utils import (
+from ..compat import (
     compat_urllib_request,
+)
+from ..utils import (
     ExtractorError,
 )