aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-10-20 20:18:14 +0200
committerghost <andreas.monzner@multimedia-labs.de>2010-10-20 20:18:36 +0200
commit3cc01c8deb6aa80db50ba6c4bc6f79e0a7a9bbd9 (patch)
tree73c62b0cf25480dbbd4226a55ff51368debcde01 /lib
parent788612538edaa78cfc3984eb6153c6ede659f0fc (diff)
downloadenigma2-3cc01c8deb6aa80db50ba6c4bc6f79e0a7a9bbd9.tar.gz
enigma2-3cc01c8deb6aa80db50ba6c4bc6f79e0a7a9bbd9.zip
lib/python/Components/config.py: revert previous change because of side effects
Diffstat (limited to 'lib')
-rwxr-xr-xlib/python/Components/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index 08dd3745..d7506e31 100755
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -179,7 +179,7 @@ class choicesList(object): # XXX: we might want a better name for this
def __list__(self):
if self.type == choicesList.LIST_TYPE_LIST:
- ret = [not isinstance(x, tuple) and x or len(x) > 0 and x[0] or len(x) == 0 and x for x in self.choices]
+ ret = [not isinstance(x, tuple) and x or x[0] for x in self.choices]
else:
ret = self.choices.keys()
return ret or [""]