Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 21886b5b..b02616cb 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -49,7 +49,7 @@ def run(cmd, echo=False):
data = handle.stdout.read()
if len(data):
if echo:
- print(data.decode('UTF-8', end=''))
+ print(data.decode('UTF-8'), end='')
# print(data.decode('UTF-8'), end='')
output += data
output += handle.stdout.read()