summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2004-10-11 19:40:50 +0000
committerBill Nottingham <notting@redhat.com>2004-10-11 19:40:50 +0000
commit8237b2037c826fc7097055cf1a00a10a99db8bcf (patch)
tree1c900de2a9034e887d5ef6620f8b108d9790db23 /scripts
parent4d9e1df2d58aa5b6a1a17802c9162ecdf965c6b6 (diff)
reverse norwegian blacklisting (#129453)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/genlocalelist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/genlocalelist.py b/scripts/genlocalelist.py
index b8a1c72e8..fc56e8b51 100755
--- a/scripts/genlocalelist.py
+++ b/scripts/genlocalelist.py
@@ -119,9 +119,9 @@ for line in lines:
# we don't want @euro locales for utf8
lang = lang.replace("UTF-8@euro", "UTF-8")
- # someone put nb_NO in locale.alias. yuck. We don't want
+ # someone put no_NO in locale.alias. yuck. We don't want
# to offer that
- if lang.startswith("nb_") or lang.startswith("iw_"):
+ if lang.startswith("no_") or lang.startswith("iw_"):
continue
f = os.popen("LANG=%s locale language territory charmap" %(lang,), "r")