Update error handling in get_file_by_url

I don't believe the the .text could actually raise that exception. Oops.
This commit is contained in:
Alexander Cecile 2020-08-25 20:48:35 -04:00
parent 26b2ab9e5a
commit 06483cca1d

View File

@ -1495,16 +1495,8 @@ def get_file_by_url(url, params=None, **kwargs):
return None
req.encoding = req.apparent_encoding
try:
res_text = req.text
except UnicodeDecodeError:
print("Decoding error when retrieving data from {}".format(url))
return None
res = "\n".join([domain_to_idna(line) for line in res_text.split("\n")])
return res
res_text = "\n".join([domain_to_idna(line) for line in req.text.split("\n")])
return res_text
def write_data(f, data):