diff --git a/superset/commands/exceptions.py b/superset/commands/exceptions.py index 7fc89ac1d93aa..aa51886797723 100644 --- a/superset/commands/exceptions.py +++ b/superset/commands/exceptions.py @@ -28,7 +28,7 @@ class CommandException(SupersetException): def __repr__(self) -> str: if self._exception: return repr(self._exception) - return repr(self) + return super().__repr__() class ObjectNotFoundError(CommandException):