From 4c7f6e53394197ef824b1c7091078db73706db62 Mon Sep 17 00:00:00 2001 From: lxhillwind Date: Thu, 26 Oct 2017 02:04:09 +0800 Subject: [PATCH] Update configfiles.py: line too long fix --- qutebrowser/config/configfiles.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/config/configfiles.py b/qutebrowser/config/configfiles.py index ff9dd51e9..27c898611 100644 --- a/qutebrowser/config/configfiles.py +++ b/qutebrowser/config/configfiles.py @@ -355,7 +355,8 @@ class ConfigPyWriter: if normal_bindings: yield self._line('# Bindings for normal mode') for key, command in sorted(normal_bindings.items()): - yield self._line('config.bind({!r}, {!r})'.format(key, command)) + yield self._line('config.bind({!r}, {!r})'.format( + key, command)) yield '' for mode, mode_bindings in sorted(self._bindings.items()):