BF: Fix status of systemd filter backend

pull/224/head
Steven Hiscocks 2013-05-26 14:05:11 +01:00
parent 00e289e11b
commit 01109e3a04
1 changed files with 2 additions and 1 deletions

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