Fix imports and general cleanup
[youtube-dl] / youtube_dl / extractor / bandcamp.py
index acddbc8f1d19ebc48b721b3867b98fc30af3c133..9fb770cb1562f6efbe004d4b1689bf3aa1eab8d4 100644 (file)
@@ -4,9 +4,11 @@ import json
 import re
 
 from .common import InfoExtractor
-from ..utils import (
+from ..compat import (
     compat_str,
     compat_urlparse,
+)
+from ..utils import (
     ExtractorError,
 )