diff --git a/bink.py b/bink.py index dcb53fe..92c6633 100755 --- a/bink.py +++ b/bink.py @@ -138,7 +138,7 @@ class ActionBox(urwid.ListBox): elif keyl == "r": app.update() elif keyl in ("q", "x"): - app.exit() + app.terminate() elif keyl == " ": super().keypress(size, "page down") elif keyl in ("j", "n", "ctrl n"): @@ -165,4 +165,4 @@ app = App() try: app.loop.run() except KeyboardInterrupt: - app.exit() + app.terminate()