This commit is contained in:
Kovid Goyal 2019-04-04 15:37:43 +05:30
parent a21cbc9581
commit 6e0622287b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ from contextlib import closing
try:
from urllib.parse import urlencode
except ImportError:
from urllib2 import urlencode
from urllib import urlencode
from lxml import html

View File

@ -11,7 +11,7 @@ from contextlib import closing
try:
from urllib.parse import quote_plus
except ImportError:
from urllib2 import quote_plus
from urllib import quote_plus
from lxml import html