aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ServiceList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-13 03:47:44 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-13 03:47:44 +0100
commita4b8eb676ba549ebe8cf347f15888e51d8914789 (patch)
treef88416c61e96ec26675c8817a6961a74207f0f7b /lib/python/Components/ServiceList.py
parentdce87891f204f8e1f7151c4a3ba00b9dd048e795 (diff)
parentc46312d7f5ce4113ece4c33595b7192eccadcb1d (diff)
downloadenigma2-a4b8eb676ba549ebe8cf347f15888e51d8914789.tar.gz
enigma2-a4b8eb676ba549ebe8cf347f15888e51d8914789.zip
Merge branch 'master' of /home/tmbinc/enigma2-git into tmbinc/FixTimingBugs
Conflicts: lib/python/Screens/InfoBarGenerics.py
Diffstat (limited to 'lib/python/Components/ServiceList.py')
-rw-r--r--lib/python/Components/ServiceList.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/python/Components/ServiceList.py b/lib/python/Components/ServiceList.py
index b5e44b4d..b0283c11 100644
--- a/lib/python/Components/ServiceList.py
+++ b/lib/python/Components/ServiceList.py
@@ -5,8 +5,6 @@ from skin import parseColor, parseFont
from enigma import eListboxServiceContent, eListbox, eServiceCenter, eServiceReference, gFont, eRect
from Tools.LoadPixmap import LoadPixmap
-from string import upper
-
from Tools.Directories import resolveFilename, SCOPE_SKIN_IMAGE
class ServiceList(HTMLComponent, GUIComponent):
@@ -113,7 +111,7 @@ class ServiceList(HTMLComponent, GUIComponent):
# TODO fill with life
print "Next char: "
index = self.l.getNextBeginningWithChar(char)
- indexup = self.l.getNextBeginningWithChar(upper(char))
+ indexup = self.l.getNextBeginningWithChar(char.upper())
if indexup != 0:
if (index > indexup or index == 0):
index = indexup