Skip to content

Commit

Permalink
Merge pull request #1707 from csordasmarton/fix-long-line
Browse files Browse the repository at this point in the history
Fix long line in failure_lib.py
  • Loading branch information
gyorb authored Aug 13, 2018
2 parents b4ce339 + 809f918 commit e0b7281
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/debug_tools/failure_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e0b7281

Please sign in to comment.