Added stripping of peak output to avoid new lines forming.
This commit is contained in:
parent
81822e6444
commit
36bc243cf8
|
|
@ -179,7 +179,7 @@ class sys_command():#Thread):
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
||||||
# And print the new output we're peaking on:
|
# And print the new output we're peaking on:
|
||||||
sys.stdout.write(output)
|
sys.stdout.write(output.strip('\r\n '))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue