From 9b27f13d0fd750c754fbd5badf05fd4883e50c1f Mon Sep 17 00:00:00 2001 From: nebula Date: Wed, 23 Apr 2025 23:14:32 +0000 Subject: [PATCH] i actually tested this --- bink.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bink.py b/bink.py index 44035db..b53b7ba 100755 --- a/bink.py +++ b/bink.py @@ -163,5 +163,6 @@ class ActionBox(urwid.ListBox): app = App() try: app.loop.run() -except KeyboardInterrupt: app.terminate() +except (KeyboardInterrupt, urwid.ExitMainLoop): + exit(0)