Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2019-04-10 18:21:08 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2019-04-10 18:21:08 +0200
commit317ed640f0a1568ce67c1a9ab441e4f920aa421f (patch)
treed80d85b3642a6a2e1aa82581e0d4c10811c791d3 /archinstall.py
parent434603a008a6d80b1333c76255435dc6bc98b40f (diff)
Forgot to send the options as actual options.
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index bf8827f6..d2d0a1d6 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -114,7 +114,7 @@ def run(cmd, echo=False, opts=None, *args, **kwargs):
if not opts: opts = {}
if echo or 'debug' in opts:
print('[!] {}'.format(cmd))
- handle = Popen(cmd, shell='True', stdout=PIPE, stderr=STDOUT, stdin=PIPE **kwargs)
+ handle = Popen(cmd, shell='True', stdout=PIPE, stderr=STDOUT, stdin=PIPE, **kwargs)
output = b''
while handle.poll() is None:
data = handle.stdout.read()