HTTPError is in urllib.error in Python 3, not in http.error
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Wed, 28 Aug 2013 08:18:39 +0000 (10:18 +0200)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Wed, 28 Aug 2013 08:18:39 +0000 (10:18 +0200)
youtube_dl/utils.py

index f78b5fe7889e6493ed8d87046dd7294fb3e3809f..e6fa634a7f1823a7e5a0f75c2b2eb79b18e9d2e3 100644 (file)
@@ -61,7 +61,7 @@ except ImportError: # Python 2
     import httplib as compat_http_client
 
 try:
-    from http.error import HTTPError as compat_HTTPError
+    from urllib.error import HTTPError as compat_HTTPError
 except ImportError:  # Python 2
     from urllib2 import HTTPError as compat_HTTPError