Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-19 00:47:45 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-19 00:47:45 +0000
commit2fbf1beeef6db67ae9c7e3f302362dd5a43943dc (patch)
tree1241f92d69ccc59c9263757a6edc577118bca31b
parent1c7077029b2cdce1d0e331c0d464a32ceb15533b (diff)
debugging
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 68d59ecb..6d67faea 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -193,7 +193,7 @@ def simple_command(cmd, opts=None, *positionals, **kwargs):
if not opts: opts = {}
if '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)
output = b''
while handle.poll() is None:
data = handle.stdout.read()