Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/general.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-04 15:15:30 +0200
committerAnton Hvornum <anton@hvornum.se>2021-04-04 15:15:30 +0200
commit36bc243cf8d2dbb68d1c37f121f9b1e537964175 (patch)
treeb5d31295cfa7259b15cd720b2052118e9c00255c /archinstall/lib/general.py
parent81822e64443e4e43554ae4f891dfc8af79ea48d5 (diff)
Added stripping of peak output to avoid new lines forming.
Diffstat (limited to 'archinstall/lib/general.py')
-rw-r--r--archinstall/lib/general.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index 41a83651..c102c946 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -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):