aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-11-02 00:54:07 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-11-02 00:54:07 +0000
commit5dc2120aaf6890256cdc25edfc5f0d83192b0291 (patch)
tree3eff6487e3672c9b2d0f9c402d572f89fcfe5071 /lib/python
parent163201ec29557dfc947fd736fae5dc9a63b488b0 (diff)
downloadenigma2-5dc2120aaf6890256cdc25edfc5f0d83192b0291.tar.gz
enigma2-5dc2120aaf6890256cdc25edfc5f0d83192b0291.zip
fix displaying teletext page number
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Subtitles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Subtitles.py b/lib/python/Screens/Subtitles.py
index d72ea336..24d9c747 100644
--- a/lib/python/Screens/Subtitles.py
+++ b/lib/python/Screens/Subtitles.py
@@ -33,7 +33,7 @@ class Subtitles(Screen, ConfigListScreen):
self.list.append(getConfigListEntry(text+" DVB "+LanguageCodes[x[4]][0], ConfigNothing(), x))
elif x[0] == 1:
if x[4] == 'und': #undefined
- self.list.append(getConfigListEntry(text+" TTX "+_("Page")+" "+str(x[2])+"/"+str(x[3]), ConfigNothing(), x))
+ self.list.append(getConfigListEntry(text+" TTX "+_("Page")+" %x%02x"%(x[3],x[2]), ConfigNothing(), x))
else:
self.list.append(getConfigListEntry(text+" TTX "+LanguageCodes[x[4]][0], ConfigNothing(), x))
# return _("Disable subtitles")