aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-09-29 16:45:07 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-09-29 16:45:07 +0000
commitc60c214a532e2ecb877276c23c6121f363cd62e0 (patch)
tree9cf1155109044885e2d0724dc12c3c01afbf7523
parent3d5abd63531d388ad02bfb454decadad18b32fb0 (diff)
downloadenigma2-c60c214a532e2ecb877276c23c6121f363cd62e0.tar.gz
enigma2-c60c214a532e2ecb877276c23c6121f363cd62e0.zip
setupSelection::__call__: fix AnwenderFehler
-rw-r--r--lib/python/Screens/Satconfig.py2
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: