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()