Cli: fix error description should be appended

This commit is contained in:
Johannes Kirschbauer
2024-11-27 09:54:12 +01:00
parent 5db3783976
commit bcc0f9e61d

View File

@@ -163,7 +163,7 @@ class ClanError(Exception):
exception_msg += self.msg
if self.description:
exception_msg = f" - {self.description}"
exception_msg += f" - {self.description}"
super().__init__(exception_msg)