Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/general.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib/general.py')
-rw-r--r--archinstall/lib/general.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index 611378ee..e22e7eed 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -30,7 +30,7 @@ if TYPE_CHECKING:
def generate_password(length :int = 64) -> str:
- haystack = string.printable # digits, ascii_letters, punctiation (!"#$[] etc) and whitespace
+ haystack = string.printable # digits, ascii_letters, punctuation (!"#$[] etc) and whitespace
return ''.join(secrets.choice(haystack) for i in range(length))