From ba2951d0ec71979bb3278d65251b1b1ccf821f7f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 15 May 2014 10:56:28 +0200 Subject: [PATCH] Fix lint --- qutebrowser/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/app.py b/qutebrowser/app.py index 50724caf6..e742e7cc6 100644 --- a/qutebrowser/app.py +++ b/qutebrowser/app.py @@ -510,7 +510,7 @@ class QuteBrowser(QApplication): # From python's Lib/test/crashers/bogus_code_obj.py co = types.CodeType(0, 0, 0, 0, 0, b'\x04\x71\x00\x00', (), (), (), '', '', 1, b'') - exec(co) + exec(co) # pylint: disable=exec-used raise Exception("Segfault failed (wat.)") else: raise Exception("Forced crash")