BF: Fix status of systemd filter backend

This commit is contained in:
Steven Hiscocks 2013-05-26 14:05:11 +01:00
parent 00e289e11b
commit 01109e3a04

View file

@ -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