From 6b72c3dbdffb8a3b23079d81c85158fb00b2127d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 17 Apr 2014 09:51:05 +0200 Subject: [PATCH] Fix long line --- qutebrowser/widgets/statusbar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qutebrowser/widgets/statusbar.py b/qutebrowser/widgets/statusbar.py index 5b7369147..dc870ab1a 100644 --- a/qutebrowser/widgets/statusbar.py +++ b/qutebrowser/widgets/statusbar.py @@ -248,8 +248,8 @@ class _Command(QLineEdit): hide_cmd = pyqtSignal() # FIXME won't the tab key switch to the next widget? - # See [0] for a possible fix. - # [0] http://www.saltycrane.com/blog/2008/01/how-to-capture-tab-key-press-event-with/ # pylint: disable=line-too-long + # See http://www.saltycrane.com/blog/2008/01/how-to-capture-tab-key-press-event-with/ + # for a possible fix. def __init__(self, statusbar): super().__init__(statusbar)