diff --git a/bindings/python/lang.py b/bindings/python/lang.py index e7bea627..c441ffb6 100644 --- a/bindings/python/lang.py +++ b/bindings/python/lang.py @@ -189,7 +189,7 @@ class Error(Exception): return '' % (self.__class__.__name__, self.code, _lasso.strError(self.code)) else: if sys.version_info >= (3,): - return '' % (self.__class__.__name__, self) + return '' % (self.__class__.__name__, super().__str__()) else: return '' % (self.__class__.__name__, self.message)