From: Steven Black Date: Tue, 10 Nov 2015 04:03:23 +0000 (-0500) Subject: Not happy with the way this lists not the source URLS, but the local file names. X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=544490e99addacfe8ab7d2685b7f3cb8861ec150;p=stevenblack-hosts.git Not happy with the way this lists not the source URLS, but the local file names. --- 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')