From 6f60a86fad3cce5e3bba2591b36765a069beed61 Mon Sep 17 00:00:00 2001 From: Steven Black Date: Sun, 3 Apr 2016 21:19:41 -0400 Subject: [PATCH] Typo in settings key. Fixes #126. --- updateHostsFile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updateHostsFile.py b/updateHostsFile.py index 40a42f102..ef1cc92aa 100644 --- a/updateHostsFile.py +++ b/updateHostsFile.py @@ -192,7 +192,7 @@ def promptForMove(finalFile): # Exclusion logic def displayExclusionOptions(): - for exclusionOption in settings["common_exclusions"]: + for exclusionOption in settings["commonexclusions"]: response = query_yes_no("Do you want to exclude the domain " + exclusionOption + " ?") if response == "yes": excludeDomain(exclusionOption)