Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/user_interaction
diff options
context:
space:
mode:
authorPatrick Schneeweis <psbleep@protonmail.com>2022-03-28 05:00:34 -0700
committerGitHub <noreply@github.com>2022-03-28 14:00:34 +0200
commitc614b3ed55ae39040c48cdf3f6a0c00098526ab1 (patch)
treece5677415082856e0946451b4ee02d2553e9fd55 /archinstall/lib/user_interaction
parentf2ad219d8ef5dd198c4cadc1574b7dc5f5f14fbe (diff)
Clarify prompt text when providing superusers. (#1044)
Co-authored-by: Anton Hvornum <anton@hvornum.se>
Diffstat (limited to 'archinstall/lib/user_interaction')
-rw-r--r--archinstall/lib/user_interaction/manage_users_conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/user_interaction/manage_users_conf.py b/archinstall/lib/user_interaction/manage_users_conf.py
index 6985a8eb..b80939a4 100644
--- a/archinstall/lib/user_interaction/manage_users_conf.py
+++ b/archinstall/lib/user_interaction/manage_users_conf.py
@@ -158,7 +158,7 @@ def manage_users(prompt: str, sudo: bool) -> tuple[dict, dict]:
def ask_for_superuser_account(prompt: str) -> Dict[str, Dict[str, str]]:
- prompt = prompt if prompt else str(_('Define users with sudo privilege: '))
+ prompt = prompt if prompt else str(_('Define users with sudo privilege, by username: '))
superusers, dummy = manage_users(prompt, sudo=True)
return superusers