summaryrefslogtreecommitdiffstats
path: root/language.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-16 23:35:08 +0000
committerMatt Wilson <msw@redhat.com>2001-07-16 23:35:08 +0000
commit5416b2a0a73ddc2ea0845b96325268aedea673b9 (patch)
tree070b4b934d4c34dff058ef2a7865727ad34423cd /language.py
parent792d02c17b919c101850ae0ac7d9a64a39624a40 (diff)
downloadanaconda-5416b2a0a73ddc2ea0845b96325268aedea673b9.tar.gz
anaconda-5416b2a0a73ddc2ea0845b96325268aedea673b9.tar.xz
anaconda-5416b2a0a73ddc2ea0845b96325268aedea673b9.zip
better test
Diffstat (limited to 'language.py')
-rw-r--r--language.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/language.py b/language.py
index 18f3f1b1a..06b055d5e 100644
--- a/language.py
+++ b/language.py
@@ -265,7 +265,7 @@ class Language (SimpleConfigFile):
def writeKS(self, f):
sup = ""
- if len(self.info["SUPPORTED"]) != len(self.allSupportedLangs):
+ if self.info["SUPPORTED"] != None:
for n in self.getSupported():
sup = sup + " " + self.getLangNickByName(n)