BF: Fix getting jail name from exceptions in beautifier for Python 3+

pull/673/head
Steven Hiscocks 2014-03-29 22:54:06 +00:00
parent 2c34fb0aec
commit 3781ff845a
1 changed files with 2 additions and 2 deletions

View File

@ -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