mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-03-11 08:55:31 +00:00
BF: ISO8601 format now returns time in local time zone
This commit is contained in:
parent
d661b8c046
commit
bf86edb3ae
1 changed files with 1 additions and 1 deletions
|
|
@ -259,6 +259,6 @@ class DateISO8601(DateTemplate):
|
|||
if dateMatch:
|
||||
# Parses the date.
|
||||
value = dateMatch.group()
|
||||
date = list(iso8601.parse_date(value).timetuple())
|
||||
date = list(iso8601.parse_date(value, None).timetuple())
|
||||
return date
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue