Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/locale_helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/locale_helpers.py b/archinstall/lib/locale_helpers.py
index b48c3bc4..5580fa91 100644
--- a/archinstall/lib/locale_helpers.py
+++ b/archinstall/lib/locale_helpers.py
@@ -20,7 +20,7 @@ def list_locales() -> List[str]:
entries.reverse()
for entry in entries:
- text = entry[1:].strip()
+ text = entry.replace('#', '').strip()
if text == '':
break
locales.append(text)