mirror of
https://github.com/fail2ban/fail2ban.git
synced 2026-03-11 08:55:31 +00:00
BF: Fix getting jail name from exceptions in beautifier for Python 3+
This commit is contained in:
parent
2c34fb0aec
commit
3781ff845a
1 changed files with 2 additions and 2 deletions
|
|
@ -188,9 +188,9 @@ class Beautifier:
|
|||
logSys.debug("Beautify (error) " + `response` + " with " + `self.__inputCmd`)
|
||||
msg = response
|
||||
if isinstance(response, UnknownJailException):
|
||||
msg = "Sorry but the jail '" + response[0] + "' does not exist"
|
||||
msg = "Sorry but the jail '" + response.args[0] + "' does not exist"
|
||||
elif isinstance(response, IndexError):
|
||||
msg = "Sorry but the command is invalid"
|
||||
elif isinstance(response, DuplicateJailException):
|
||||
msg = "The jail '" + response[0] + "' already exists"
|
||||
msg = "The jail '" + response.args[0] + "' already exists"
|
||||
return msg
|
||||
|
|
|
|||
Loading…
Reference in a new issue