From 809f918dd6c381b88e67e48e23cdec8749b3a6c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Csord=C3=A1s?= Date: Mon, 13 Aug 2018 09:21:59 +0200 Subject: [PATCH] Fix long line in failure_lib.py --- scripts/debug_tools/failure_lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/debug_tools/failure_lib.py b/scripts/debug_tools/failure_lib.py index 45f79c8d73..36ad5840df 100644 --- a/scripts/debug_tools/failure_lib.py +++ b/scripts/debug_tools/failure_lib.py @@ -35,8 +35,8 @@ def change_paths(string, pathModifierFun): result = [] i = 0 while i < len(string): - # Everything is a path which starts with a '/' and there is a whitespace - # after that. + # Everything is a path which starts with a '/' and there is a + # whitespace after that. # Note, this supports only POSIX paths. if string[i] == '/': path, path_end = find_path_end(string, i)