Fix logging issues with the controller

This commit is contained in:
Julien Duponchelle
2016-03-04 16:55:59 +01:00
parent 4d77b2918e
commit 0532b4de8a
5 changed files with 11 additions and 9 deletions

View File

@ -17,6 +17,7 @@
class ControllerError(Exception):
def __init__(self, message):
super().__init__(message)
self._message = message
@ -26,5 +27,3 @@ class ControllerError(Exception):
def __str__(self):
return self._message