index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-19 00:47:45 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-19 00:47:45 +0000 |
commit | 2fbf1beeef6db67ae9c7e3f302362dd5a43943dc (patch) | |
tree | 1241f92d69ccc59c9263757a6edc577118bca31b | |
parent | 1c7077029b2cdce1d0e331c0d464a32ceb15533b (diff) |
-rw-r--r-- | archinstall.py | 2 |
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() |