Merge pull request #936 from pi-hole/Mcat12-patch-1

Fix typo
This commit is contained in:
Dan Schaper 2016-11-19 11:08:20 -08:00 committed by GitHub
commit 22ead933b6
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ gravity_Blacklist() {
if [[ -f "${blacklistFile}" ]]; then
numBlacklisted=$(wc -l < "${blacklistFile}")
plural=; [[ "$numBlacklisted" != "1" ]] && plural=s
echo -n "::: BlackListing $numBlacklisted domain${plural}..."
echo -n "::: Blacklisting $numBlacklisted domain${plural}..."
cat ${blacklistFile} >> ${piholeDir}/${eventHorizon}
echo " done!"
else