mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-03-11 08:55:31 +00:00
BF: Fix status of systemd filter backend
This commit is contained in:
parent
00e289e11b
commit
01109e3a04
1 changed files with 2 additions and 1 deletions
|
|
@ -259,5 +259,6 @@ class FilterSystemd(JournalFilter): # pragma: systemd no cover
|
|||
|
||||
def status(self):
|
||||
ret = JournalFilter.status(self)
|
||||
ret.append(("Journal matches", [" + ".join(self.__matches)]))
|
||||
ret.append(("Journal matches",
|
||||
[" + ".join(" ".join(match) for match in self.__matches)]))
|
||||
return ret
|
||||
|
|
|
|||
Loading…
Reference in a new issue