Skip to content
Snippets Groups Projects
Commit 7d4ec80e authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

better __repr__s for ConfigurationSources

parent ac6d4c4f
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ class BaseSatellaException(Exception):
self.msg = msg
def __str__(self):
return '%s(%s)' % (self._class__.__qualname__, repr(self.msg),)
return '%s(%s)' % (self.__class__.__qualname__, repr(self.msg),)
class ResourceLocked(BaseSatellaException):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment