Pylint indentation fix

This commit is contained in:
George Edward Bulmer 2018-02-12 14:24:53 +00:00
parent 561e5d17b9
commit 9397cc74c1

View File

@ -94,8 +94,8 @@ class ConfigErrorDesc:
def __str__(self): def __str__(self):
if self.traceback: if self.traceback:
return '{} - {}: {}'.format(self.text, return '{} - {}: {}'.format(self.text,
self.exception.__class__.__name__, self.exception.__class__.__name__,
self.exception) self.exception)
return '{}: {}'.format(self.text, self.exception) return '{}: {}'.format(self.text, self.exception)
def with_text(self, text): def with_text(self, text):