From 8237b2037c826fc7097055cf1a00a10a99db8bcf Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 11 Oct 2004 19:40:50 +0000 Subject: reverse norwegian blacklisting (#129453) --- scripts/genlocalelist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') 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") -- cgit