Added stripping of peak output to avoid new lines forming.

This commit is contained in:
Anton Hvornum 2021-04-04 15:15:30 +02:00
parent 81822e6444
commit 36bc243cf8
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ class sys_command():#Thread):
sys.stdout.flush()
# And print the new output we're peaking on:
sys.stdout.write(output)
sys.stdout.write(output.strip('\r\n '))
sys.stdout.flush()
def run(self):