donate-cpu.py: Align multi line output in diff (trac #8868) (#1508)

This is a very simple/stupid fix that just inserts 5 spaces for every line except the first.
This commit is contained in:
Sebastian 2018-12-06 17:36:22 +01:00 committed by amai2012
parent 7bf5cc1ce7
commit a4dd423a18
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ def splitResults(results):
ret.append(w.strip())
w = ''
if w is not None:
w += line + '\n'
w += ' ' * 5 + line + '\n'
if w is not None:
ret.append(w.strip())
return ret