Skip to content

Commit

Permalink
log the correct exception debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jul 24, 2024
1 parent aaf22af commit 8802efb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/gtk_common/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def __exit__(self, e_typ, _e_val, trcbak):
if e_typ is None:
#we are not handling an exception yet, so raise this one:
raise
log(f"Ignoring {e_typ} during Xexit, {e_typ} will be raised instead", exc_info=e)
log(f"Ignoring {e} during Xexit, {e_typ} will be raised instead", exc_info=e)
#raise the original exception:
return False

Expand Down

0 comments on commit 8802efb

Please sign in to comment.