This is a very simple/stupid fix that just inserts 5 spaces for every line except the first.
This commit is contained in:
parent
7bf5cc1ce7
commit
a4dd423a18
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue