From 6ccb42023050287f7b16404556e2dc07386cebf5 Mon Sep 17 00:00:00 2001 From: Jacob Sword Date: Sat, 8 Apr 2017 18:42:26 -0400 Subject: [PATCH] Fix syntax error in debug-exit --- qutebrowser/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/app.py b/qutebrowser/app.py index 086c67528..8ca322078 100644 --- a/qutebrowser/app.py +++ b/qutebrowser/app.py @@ -792,7 +792,7 @@ class Application(QApplication): def exit(self, status): """Extend QApplication::exit to log the event.""" log.destroy.debug("Now calling QApplication::exit.") - if 'debug_exit' in self._args.debug_flags: + if 'debug-exit' in self._args.debug_flags: if hunter is None: print("Not logging late shutdown because hunter could not be " "imported!", file=sys.stderr)