diff --git a/ddos-mitigator.sh b/ddos-mitigator.sh
index 0149601..e33a949 100755
--- a/ddos-mitigator.sh
+++ b/ddos-mitigator.sh
@@ -132,7 +132,7 @@ function filter() {
 	# Reject already banned addresses
 	while read -r -u3 address ; do
 		if [[ "${banned}" != *"${address}${ext}${suffix}"* ]] ; then
-			echo "Considering ${address}${ext}${suffix}."
+			echo "Considering ${address}${ext}${suffix}"
 			echo "${address}" >> "${filtered}"
 		else
 			echo "IGNORING ${address}${ext}${suffix}, already banned."