Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-11-02 16:23:18 +0000
committerGitHub <noreply@github.com>2021-11-02 16:23:18 +0000
commitccbf9d1f19cd10c48db61abd86e4a1da546c5434 (patch)
tree73aa810814fb8710f472f8c0f7a0ed4c71a826db
parente70cfa65bb73cc81ea1c500c58c463180ad6e442 (diff)
parent675db53f1d25f24fe1387cb87ce1a54af94ee399 (diff)
Merge pull request #685 from TheEvilSkeleton/typo
Fix typos
-rw-r--r--archinstall/lib/storage.py2
-rw-r--r--examples/guided.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/storage.py b/archinstall/lib/storage.py
index 67f8e716..ae330382 100644
--- a/archinstall/lib/storage.py
+++ b/archinstall/lib/storage.py
@@ -4,7 +4,7 @@ import os
# 1. In the git repository, where ./profiles/ exist
# 2. When executing from a remote directory, but targeted a script that starts from the git repository
# 3. When executing as a python -m archinstall module where profiles exist one step back for library reasons.
-# (4. Added the ~/.config directory as a additional option for future reasons)
+# (4. Added the ~/.config directory as an additional option for future reasons)
#
# And Keeping this in dict ensures that variables are shared across imports.
storage = {
diff --git a/examples/guided.py b/examples/guided.py
index 60539a0b..c5fe9c91 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -146,7 +146,7 @@ def ask_user_questions():
# Ask for additional users (super-user if root pw was not set)
if not archinstall.arguments.get('!root-password', None) and not archinstall.arguments.get('superusers', None):
archinstall.arguments['superusers'] = archinstall.ask_for_superuser_account('Create a required super-user with sudo privileges: ', forced=True)
- users, superusers = archinstall.ask_for_additional_users('Enter a username to create a additional user (leave blank to skip & continue): ')
+ users, superusers = archinstall.ask_for_additional_users('Enter a username to create an additional user (leave blank to skip & continue): ')
archinstall.arguments['users'] = users
archinstall.arguments['superusers'] = {**archinstall.arguments['superusers'], **superusers}