Commit 97d0ab60 authored by Jérome Perrin's avatar Jérome Perrin

standalone: fix a bogus pylint warning

parent 9d251b8a
...@@ -61,10 +61,12 @@ class SlapOSNodeCommandError(Exception): ...@@ -61,10 +61,12 @@ class SlapOSNodeCommandError(Exception):
"""Exception raised when running a SlapOS Node command failed. """Exception raised when running a SlapOS Node command failed.
""" """
def __str__(self): def __str__(self):
# This is a false positive in pylint https://github.com/PyCQA/pylint/issues/1498
called_process_error = self.args[0] # pylint: disable=unsubscriptable-object
return "{} exitstatus: {} output:\n{}".format( return "{} exitstatus: {} output:\n{}".format(
self.__class__.__name__, self.__class__.__name__,
self.args[0]['exitstatus'], called_process_error['exitstatus'],
self.args[0]['output'], called_process_error['output'],
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment