Fix python2 urlretrieve import

Fix #424
This commit is contained in:
Jakub Kadlcik 2022-09-19 00:21:16 +02:00 committed by Jakub Kadlčík
parent 2c9e8e062a
commit 9120a2e366

View file

@ -27,7 +27,7 @@ if PY2:
from ConfigParser import RawConfigParser
from StringIO import StringIO
from urlparse import urlparse
from urlparse import urlretrieve
from urllib import urlretrieve
import xmlrpclib
text_type = unicode
binary_type = str