From: Alexander Cecile Date: Wed, 26 Aug 2020 00:48:35 +0000 (-0400) Subject: Update error handling in get_file_by_url X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=06483cca1db93a0e07350ce32bfc614fc4b86346;p=stevenblack-hosts.git Update error handling in get_file_by_url I don't believe the the .text could actually raise that exception. Oops. --- diff --git a/updateHostsFile.py b/updateHostsFile.py index 2a4bce297..60fd80d7a 100644 --- a/updateHostsFile.py +++ b/updateHostsFile.py @@ -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):