mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
lint fix RaetError.__str__
This commit is contained in:
parent
74dc96bdef
commit
929ecb1409
@ -213,7 +213,7 @@ class RaetError(Exception):
|
||||
self.args = (message)
|
||||
|
||||
def __str__(self):
|
||||
return ("{0}: {1}.\n".format(self.__class__.__name__, self.message))
|
||||
return "{0}: {1}.\n".format(self.__class__.__name__, self.message)
|
||||
|
||||
|
||||
def defaultData(data=None):
|
||||
|
Loading…
Reference in New Issue
Block a user