Fix urllib for Python 3

This commit is contained in:
ines 2018-03-29 00:19:33 +02:00
parent b5098079d8
commit 83146458a2
1 changed files with 2 additions and 3 deletions

View File

@ -34,7 +34,7 @@ except ImportError:
from thinc.neural.optimizers import Adam as Optimizer
try:
import urllib
import urllib.request
except ImportError:
import urllib2 as urllib
@ -48,7 +48,6 @@ copy_reg = copy_reg
CudaStream = CudaStream
cupy = cupy
copy_array = copy_array
urllib = urllib
izip = getattr(itertools, 'izip', zip)
is_windows = sys.platform.startswith('win')
@ -83,7 +82,7 @@ def url_read(url):
file_ = url_open(url)
code = file_.getcode()
if code != 200:
raise HTTPError(url, code, "Cannot GET url", [], file_)
raise HTTPError(url, code, "Cannot GET url", [], file_)
data = file_.read()
return data