From f4f6c2c50135a0f62a93e664682847cfc5861466 Mon Sep 17 00:00:00 2001 From: "Kay Marquardt (Gnadelwartz)" Date: Sat, 11 Jul 2020 08:06:44 +0200 Subject: [PATCH] fix log_error printf --- bashbot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashbot.sh b/bashbot.sh index 3d23c5d..582e276 100755 --- a/bashbot.sh +++ b/bashbot.sh @@ -11,7 +11,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.99-dev-1-gd85c779 +#### $$VERSION$$ v0.99-dev-2-g9799db4 # # Exit Codes: # - 0 success (hopefully) @@ -72,7 +72,7 @@ check_token(){ } # log error to ERRORLOG with date log_error(){ - printf"%s: %s\n" "$(date)" "$*" >>"${ERRORLOG}" + printf "%s: %s\n" "$(date)" "$*" >>"${ERRORLOG}" } # additional tests if we run in debug mode export BASHBOTDEBUG