1
0
mirror of https://github.com/l1ving/youtube-dl synced 2024-10-03 21:17:22 +08:00

HTTPError is in urllib.error in Python 3, not in http.error

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-08-28 10:18:39 +02:00
parent 2eabb80254
commit 0e283428f7

View 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