Commit 68b3d51
committed
Fix interactive console output
The interactive console output command was returning one line less
for each update. This was probably caused by Jenkins returning an
extra newline at the end of each console output.
This commit fixes this by replacing str.split by str.splitlines
function.
Note the difference between these two functions:
>>> '\na\nb\nc\n'.split('\n')
['', 'a', 'b', 'c', '']
>>> '\na\nb\nc\n'.splitlines()
['', 'a', 'b', 'c']1 parent b1a5965 commit 68b3d51
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
294 | 294 | | |
295 | 295 | | |
296 | 296 | | |
297 | | - | |
| 297 | + | |
298 | 298 | | |
299 | 299 | | |
300 | 300 | | |
| |||
303 | 303 | | |
304 | 304 | | |
305 | 305 | | |
306 | | - | |
| 306 | + | |
307 | 307 | | |
308 | 308 | | |
309 | 309 | | |
| |||
0 commit comments