From b9129be895a8f1341129f5332797e6c53026fc89 Mon Sep 17 00:00:00 2001 From: Rolf Leggewie Date: Mon, 2 Jun 2025 03:16:40 +0800 Subject: [PATCH] add space to output of "fail2ban-client get dbpurgeage" --- fail2ban/client/beautifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fail2ban/client/beautifier.py b/fail2ban/client/beautifier.py index 21c49b94..ce8eac01 100644 --- a/fail2ban/client/beautifier.py +++ b/fail2ban/client/beautifier.py @@ -178,7 +178,7 @@ class Beautifier: msg = "Database currently disabled" else: msg = "Current database purge age is:\n" - msg += "`- %iseconds" % response + msg += "`- %i seconds" % response elif len(inC) < 3: pass # to few cmd args for below elif inC[2] in ("logpath", "addlogpath", "dellogpath"):