aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2010-06-11 23:03:52 +0200
committerFraxinas <andreas.frisch@multimedia-labs.de>2010-06-11 23:03:52 +0200
commit4fb2d81afcc8bc781ee8c705dca2488fef201c51 (patch)
tree0f685dad2eeacdd3cd1161fb7a36f8566980b29c /lib/python
parent6693714648a697fd1c86c760222795ed0341b140 (diff)
downloadenigma2-4fb2d81afcc8bc781ee8c705dca2488fef201c51.tar.gz
enigma2-4fb2d81afcc8bc781ee8c705dca2488fef201c51.zip
more vob experiments
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/Components/ConfigList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/ConfigList.py b/lib/python/Components/ConfigList.py
index ffbc69af..5a02c38d 100755
--- a/lib/python/Components/ConfigList.py
+++ b/lib/python/Components/ConfigList.py
@@ -88,7 +88,7 @@ class ConfigList(HTMLComponent, GUIComponent, object):
if l is not None:
for x in l:
- assert isinstance(x[1], ConfigElement), "entry in ConfigList " + str(x[1]) + " must be a ConfigElement"
+ assert isinstance(x, ConfigElement), "entry in ConfigList " + str(x) + " must be a ConfigElement"
def getList(self):
return self.__list