Import from the correct module
authorPhilipp Hagemeister <phihag@phihag.de>
Tue, 27 Nov 2012 23:17:59 +0000 (00:17 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Tue, 27 Nov 2012 23:17:59 +0000 (00:17 +0100)
youtube_dl/utils.py

index a27ac77dd65fe6277f21673d8bc3655d719f4031..41e6b85509be30a723d2d50e5a95a4cc5571333d 100644 (file)
@@ -47,7 +47,7 @@ except ImportError: # Python 2
        import httplib as compat_html_client
 
 try:
-       from urllib.parse.parse_qs import parse_qs as compat_parse_qs
+       from urllib.parse import parse_qs as compat_parse_qs
 except ImportError: # Python 2
        from urlparse import parse_qs as compat_parse_qs