diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-06-11 23:03:52 +0200 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-06-11 23:03:52 +0200 |
| commit | 4fb2d81afcc8bc781ee8c705dca2488fef201c51 (patch) | |
| tree | 0f685dad2eeacdd3cd1161fb7a36f8566980b29c /lib/python/Components/ConfigList.py | |
| parent | 6693714648a697fd1c86c760222795ed0341b140 (diff) | |
| download | enigma2-4fb2d81afcc8bc781ee8c705dca2488fef201c51.tar.gz enigma2-4fb2d81afcc8bc781ee8c705dca2488fef201c51.zip | |
more vob experiments
Diffstat (limited to 'lib/python/Components/ConfigList.py')
| -rwxr-xr-x | lib/python/Components/ConfigList.py | 2 |
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 |
