Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
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