From 0ba1c7c08def286864416aa3c3f00b2943bc23eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Hovm=C3=B6ller?= Date: Fri, 25 Oct 2024 12:01:28 +0200 Subject: [PATCH] Improve error message --- mutmut/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mutmut/__main__.py b/mutmut/__main__.py index 99f89c3b..d3a3f555 100644 --- a/mutmut/__main__.py +++ b/mutmut/__main__.py @@ -1527,7 +1527,7 @@ def load_thread(): if event.row_key.value == self.loading_id: diff_view.text = d except Exception as e: - diff_view.text = f'<{e}>' + diff_view.text = f'<{type(e)} {e}>' t = Thread(target=load_thread) t.start()