mirror of https://github.com/fail2ban/fail2ban
Remove redundant reassignment of variable
parent
78d86bc38d
commit
184e0eccb6
|
@ -294,7 +294,7 @@ class Filter(JailThread):
|
||||||
# Decode line to UTF-8
|
# Decode line to UTF-8
|
||||||
line = line.decode('utf-8')
|
line = line.decode('utf-8')
|
||||||
except UnicodeDecodeError:
|
except UnicodeDecodeError:
|
||||||
line = line
|
pass
|
||||||
timeMatch = self.dateDetector.matchTime(line)
|
timeMatch = self.dateDetector.matchTime(line)
|
||||||
if timeMatch:
|
if timeMatch:
|
||||||
# Lets split into time part and log part of the line
|
# Lets split into time part and log part of the line
|
||||||
|
|
Loading…
Reference in New Issue