Skip to content

Commit

Permalink
Explicitly ignore SystemExit exceptions in launch.py (fixes Pidgeot#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pidgeot committed Sep 26, 2022
1 parent 20a58c3 commit a6b1bf1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

try:
lnp.PyLNP()
except SystemExit:
raise
except:
import traceback
message = traceback.format_exception(*sys.exc_info())
Expand Down

0 comments on commit a6b1bf1

Please sign in to comment.