From 5bd9cc7a6a93fbd2b3b06cbdfbaaf8b7e89e8b7b Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Wed, 28 Nov 2012 00:22:55 +0100 Subject: [PATCH] typo --- youtube_dl/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 41e6b8550..3fcb0927f 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -42,9 +42,9 @@ except ImportError: # Python 2 import HTMLParser as compat_html_parser try: - import http.client as compat_html_client + import http.client as compat_http_client except ImportError: # Python 2 - import httplib as compat_html_client + import httplib as compat_http_client try: from urllib.parse import parse_qs as compat_parse_qs