Skip to content

Commit

Permalink
Improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
boxed committed Oct 25, 2024
1 parent d2cd591 commit 0ba1c7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mutmut/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 0ba1c7c

Please sign in to comment.