1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-19 06:38:17 +00:00

remove _ from regex descibers

Signed-off-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
Adam Warner 2019-12-01 12:50:24 +00:00
parent 63e407cfdc
commit 869473172c
No known key found for this signature in database
GPG Key ID: 872950F3ECF2B173

View File

@ -32,9 +32,9 @@ GetListnameFromTypeId() {
elif [[ "$1" == "1" ]]; then
echo "blacklist"
elif [[ "$1" == "2" ]]; then
echo "regex_whitelist"
echo "regex whitelist"
elif [[ "$1" == "3" ]]; then
echo "regex_blacklist"
echo "regex blacklist"
fi
}