This commit is contained in:
Guillaume Ayoub
2013-07-12 15:25:57 +02:00
parent 18f5c334f1
commit c4f2587fd9
3 changed files with 21 additions and 3 deletions

View File

@@ -39,10 +39,10 @@ import wsgiref.simple_server
# pylint: disable=F0401,E0611
try:
from http import client
from urllib.parse import quote, unquote, urlparse
from urllib.parse import unquote, urlparse
except ImportError:
import httplib as client
from urllib import quote, unquote
from urllib import unquote
from urlparse import urlparse
# pylint: enable=F0401,E0611