mirror of https://github.com/fail2ban/fail2ban
BF: Fix status of systemd filter backend
parent
00e289e11b
commit
01109e3a04
|
@ -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 New Issue