index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Fabian Bornschein <18744080+fabiscafe@users.noreply.github.com> | 2022-08-01 09:42:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-01 09:42:58 +0200 |
commit | d2f58362c9035be57670784584a666eea8c09e60 (patch) | |
tree | 791e57437dbf1661c077f75fae88d85a94bba510 /archinstall/lib/locale_helpers.py | |
parent | 9194f6d85965f435f8d0ae44ba20e73cc761eb44 (diff) |
-rw-r--r-- | archinstall/lib/locale_helpers.py | 2 |
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) |