From: Jaime Marquínez Ferrándiz Date: Wed, 28 Aug 2013 08:18:39 +0000 (+0200) Subject: HTTPError is in urllib.error in Python 3, not in http.error X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=0e283428f777a23de3c5a522aa283f87cda1b40a;p=youtube-dl HTTPError is in urllib.error in Python 3, not in http.error --- diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index f78b5fe78..e6fa634a7 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -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