From 544490e99addacfe8ab7d2685b7f3cb8861ec150 Mon Sep 17 00:00:00 2001 From: Steven Black Date: Mon, 9 Nov 2015 23:03:23 -0500 Subject: [PATCH] Not happy with the way this lists not the source URLS, but the local file names. --- updateHostsFile.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/updateHostsFile.py b/updateHostsFile.py index 650160d34..0aeed0e61 100755 --- a/updateHostsFile.py +++ b/updateHostsFile.py @@ -282,11 +282,6 @@ def writeOpeningHeader(finalFile): writeData(finalFile, '# This file is a merged collection of hosts from reputable sources,\n') writeData(finalFile, '# with a dash of crowd sourcing via Github\n#\n') writeData(finalFile, '# Project home page: https://github.com/StevenBlack/hosts\n#\n') - writeData(finalFile, '# Current sources:\n') - for source in SOURCES: - writeData(finalFile, '# ' + source + '\n') - writeData(finalFile, '#\n') - writeData(finalFile, '# Merging these sources produced ' + "{:,}".format( numberOfRules ) + ' unique entries\n') writeData(finalFile, '# ===============================================================\n') writeData(finalFile, '\n') writeData(finalFile, '127.0.0.1 localhost\n')