From 32cde9692ea592e113d97b77820eeae4ccda1c1b Mon Sep 17 00:00:00 2001 From: Steven Black Date: Sat, 13 Feb 2016 20:53:22 -0500 Subject: [PATCH] Less verbose when echoing source updates. --- updateHostsFile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updateHostsFile.py b/updateHostsFile.py index 776fafb55..fc2f67e29 100644 --- a/updateHostsFile.py +++ b/updateHostsFile.py @@ -192,7 +192,7 @@ def updateAllSources(): updateURL = getUpdateURLFromFile(source) if updateURL is None: continue - print ("Updating source " + source + " from " + updateURL) + print ("Updating source " + os.path.basename(source) + " from " + updateURL) # Cross-python call updatedFile = getFileByUrl(updateURL)