mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-03-11 08:55:31 +00:00
Merge branch '0.9' into 0.10
This commit is contained in:
commit
ffd366e17b
1 changed files with 1 additions and 1 deletions
|
|
@ -236,7 +236,7 @@ class FilterSystemd(JournalFilter): # pragma: systemd no cover
|
|||
logSys.log(5, "[%s] Read systemd journal entry: %s %s", self.jailName,
|
||||
date.isoformat(), logline)
|
||||
## use the same type for 1st argument:
|
||||
return ((logline[:0], date.isoformat(), logline),
|
||||
return ((logline[:0], date.isoformat(), logline.replace('\n', '\\n')),
|
||||
time.mktime(date.timetuple()) + date.microsecond/1.0E6)
|
||||
|
||||
def seekToTime(self, date):
|
||||
|
|
|
|||
Loading…
Reference in a new issue