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>2020-11-11 22:23:26 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-11-11 22:23:26 +0000
commit4dd20ae4d4abeed916c0d1271a637dcb3c80b9a6 (patch)
tree3ca98a8fc779aea829568b5d9b30b04532e1da1e
parentb00f307a287ef7ef32d5c9988d79cf60d09c26ae (diff)
Fixed default-variable setup bug.
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 8378fc6b..69162244 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -135,7 +135,7 @@ while 1:
continue
break
- if 'users' not in archinstall.storage['_guided']:
+ if not archinstall.storage['_guided']['users']:
archinstall.storage['_guided']['users'] = []
archinstall.storage['_guided']['users'].append(new_user)