From aa8b9508e03f317f2fb31149bc9a633aca323819 Mon Sep 17 00:00:00 2001 From: Steven Black Date: Wed, 28 Oct 2015 19:33:59 -0400 Subject: [PATCH] File is unavailable. Don't raise this error; just eat it. --- updateHostsFile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updateHostsFile.py b/updateHostsFile.py index cf7503a89..a78825ddb 100755 --- a/updateHostsFile.py +++ b/updateHostsFile.py @@ -37,7 +37,7 @@ def getFileByUrl(url): return f.read().decode("UTF-8") except: print ("Problem getting file: ", url); - raise + # raise # In Python 3 "print" is a function, braces are added everywhere