summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-02-21 16:49:05 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-02-21 16:49:05 +0100
commit7c038b3c32bac26d28782852d921a91e530317a6 (patch)
treeb04ae9b0914e4292876b65d46b0006b2d4317ac5
parentc8cd8e5f55c202171a1b1b6798067fb8cb68f6ab (diff)
downloadyoutube-dl-7c038b3c32bac26d28782852d921a91e530317a6.tar.gz
youtube-dl-7c038b3c32bac26d28782852d921a91e530317a6.tar.xz
youtube-dl-7c038b3c32bac26d28782852d921a91e530317a6.zip
Import HTTPErrorProcessor from the correct module (Closes #696)
-rwxr-xr-xyoutube_dl/InfoExtractors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index 415aacd02..23bd21af5 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -1330,7 +1330,7 @@ class GenericIE(InfoExtractor):
         opener = compat_urllib_request.OpenerDirector()
         for handler in [compat_urllib_request.HTTPHandler, compat_urllib_request.HTTPDefaultErrorHandler,
                         HTTPMethodFallback, HEADRedirectHandler,
-                        compat_urllib_error.HTTPErrorProcessor, compat_urllib_request.HTTPSHandler]:
+                        compat_urllib_request.HTTPErrorProcessor, compat_urllib_request.HTTPSHandler]:
             opener.add_handler(handler())
 
         response = opener.open(HeadRequest(url))