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:
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 6abef205..203f5fa9 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -171,7 +171,7 @@ class sys_command():#Thread):
while alive and not self.kwargs['emulate']:
for fileno, event in poller.poll(0.1):
try:
- output = os.read(child_fd, 8192).strip()
+ output = os.read(child_fd, 8192)
self.trace_log += output
except OSError:
alive = False