diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-09-29 16:45:07 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-09-29 16:45:07 +0000 |
| commit | c60c214a532e2ecb877276c23c6121f363cd62e0 (patch) | |
| tree | 9cf1155109044885e2d0724dc12c3c01afbf7523 | |
| parent | 3d5abd63531d388ad02bfb454decadad18b32fb0 (diff) | |
| download | enigma2-c60c214a532e2ecb877276c23c6121f363cd62e0.tar.gz enigma2-c60c214a532e2ecb877276c23c6121f363cd62e0.zip | |
setupSelection::__call__: fix AnwenderFehler
| -rw-r--r-- | lib/python/Screens/Satconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Satconfig.py b/lib/python/Screens/Satconfig.py index 78f60f4f..75e5e894 100644 --- a/lib/python/Screens/Satconfig.py +++ b/lib/python/Screens/Satconfig.py @@ -14,7 +14,7 @@ class setupSelection: self.parent.value = self.parent.value + 1 def __call__(self, selected): #needed by configlist - print "value" + self.parent.value + print "value" + str(self.parent.value) return ("text", self.parent.vals[self.parent.value]) class setupElement: |
