Update chronometer.sh

Removed unneeded code on line 35
This commit is contained in:
gh0stshell 2016-01-27 21:41:10 -07:00
parent 60aed85933
commit 3ec23a66a3

View file

@ -32,7 +32,7 @@ function CalcBlockedDomains(){
function CalcQueriesToday(){
if [ -e "$piLog" ];then
queriesToday=$(cat "$piLog" | grep "$today" | awk '/query/ {print $6}' | wc -l)
queriesToday=$(cat "$piLog" | awk '/query/ {print $6}' | wc -l)
else
queriesToday="Err."
fi