fix remaining urllib2 reference (#830)
This commit is contained in:
parent
0f3e8d32c6
commit
f3e032f88a
|
@ -100,7 +100,7 @@ def load_from_url(url):
|
||||||
response = None
|
response = None
|
||||||
try:
|
try:
|
||||||
response = urllib.urlopen(req, timeout=int(args.timeout))
|
response = urllib.urlopen(req, timeout=int(args.timeout))
|
||||||
except urllib2.URLError as err:
|
except urllib.URLError as err:
|
||||||
raise Exception("[{}] could not be loaded: {}\n".format(url, err))
|
raise Exception("[{}] could not be loaded: {}\n".format(url, err))
|
||||||
if trusted is False and response.getcode() != 200:
|
if trusted is False and response.getcode() != 200:
|
||||||
raise Exception("[{}] returned HTTP code {}\n".format(
|
raise Exception("[{}] returned HTTP code {}\n".format(
|
||||||
|
|
Loading…
Reference in New Issue