Skip to content

Commit a6b1bf1

Browse files
committed
Explicitly ignore SystemExit exceptions in launch.py (fixes #182)
1 parent 20a58c3 commit a6b1bf1

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

launch.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
try:
1212
lnp.PyLNP()
13+
except SystemExit:
14+
raise
1315
except:
1416
import traceback
1517
message = traceback.format_exception(*sys.exc_info())

0 commit comments

Comments
 (0)