Issue #57: fix - ignore blank lines in the whitelist.

This commit is contained in:
Steven Black 2016-02-22 21:48:02 -05:00
parent 5c98a08d41
commit ffc17dd7fa

View File

@ -261,7 +261,8 @@ def removeDupsAndExcl(mergeFile):
if os.path.isfile(WHITELIST_FILE):
with open(WHITELIST_FILE, "r") as ins:
for line in ins:
EXCLUSIONS.append(line)
if line.rstrip():
EXCLUSIONS.append(line)
# Another mode is required to read and write the file in Python 3
finalFile = open(os.path.join(BASEDIR_PATH, 'hosts'), 'r+b')