From 2d1c12f69bb1762d219ed2a8d7d2b4de347dc047 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 21 Dec 2014 18:11:35 +0100 Subject: [PATCH] Turn off flake8 for exception hook. --- qutebrowser/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/app.py b/qutebrowser/app.py index c13465659..f80fdba2a 100644 --- a/qutebrowser/app.py +++ b/qutebrowser/app.py @@ -465,7 +465,7 @@ class Application(QApplication): except OSError: log.destroy.exception("Could not remove crash log!") - def _exception_hook(self, exctype, excvalue, tb): + def _exception_hook(self, exctype, excvalue, tb): # noqa """Handle uncaught python exceptions. It'll try very hard to write all open tabs to a file, and then exit