Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLord Anton Hvornum <anton.feeds@gmail.com>2018-04-07 14:35:51 +0200
committerLord Anton Hvornum <anton.feeds@gmail.com>2018-04-07 14:35:51 +0200
commitd1c0600ebfa0679edc0aa2a8a9fd0e426170b27a (patch)
treebcc921a938a1b0f63ced26959f650869326b5f07
parent14ee4cdf8ced0fc76cf92a0f2f4cbf11c1824266 (diff)
print error
-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()