From 1da58b6a4cbbf455d5d92bea4a8812a8661d8ce0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 8 Feb 2018 09:54:20 +0100 Subject: [PATCH] Break long line --- qutebrowser/misc/editor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qutebrowser/misc/editor.py b/qutebrowser/misc/editor.py index abb37819b..80bf9cd16 100644 --- a/qutebrowser/misc/editor.py +++ b/qutebrowser/misc/editor.py @@ -168,7 +168,8 @@ class ExternalEditor(QObject): if self._watcher: ok = self._watcher.addPath(self._filename) if not ok: - log.procs.error("Failed to watch path: {}".format(self._filename)) + log.procs.error("Failed to watch path: {}" + .format(self._filename)) self._watcher.fileChanged.connect(self._on_file_changed) args = [self._sub_placeholder(arg, line, column) for arg in editor[1:]]