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-08 20:29:49 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2019-04-08 20:29:49 +0200
commit9c572a3204bdced31b1fb4622617ba9134382467 (patch)
tree24e5aabf97fe3da82ac522925f15870401e3c40b /archinstall.py
parentbc0a61b3c680ef64eabed7e606b10ab8c5897d21 (diff)
Verified implementation for #6 and #7
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 fd73824a..c7d6062b 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -23,7 +23,7 @@ positionals = []
for arg in sys.argv[1:]:
if '--' == arg[:2]:
if '=' in arg:
- key, val = [strip(x) for x in arg[2:].split('=')]
+ key, val = [x.strip() for x in arg[2:].split('=')]
else:
key, val = arg[2:], True
args[key] = val