aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources/RadioText.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-11 12:29:11 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-11 12:29:11 +0000
commit93e5471ad948cc4504bb128f0b5fbb0a939fbcbf (patch)
treed297e78edac5bfac4a19cb283d9f3995e684f32d /lib/python/Components/Sources/RadioText.py
parent64277bb53eb950f712b0a6c2676a44aacd0e73c0 (diff)
downloadenigma2-93e5471ad948cc4504bb128f0b5fbb0a939fbcbf.tar.gz
enigma2-93e5471ad948cc4504bb128f0b5fbb0a939fbcbf.zip
convert radiotext to utf8
Diffstat (limited to 'lib/python/Components/Sources/RadioText.py')
-rw-r--r--lib/python/Components/Sources/RadioText.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/Components/Sources/RadioText.py b/lib/python/Components/Sources/RadioText.py
index 6faad317..de10ad81 100644
--- a/lib/python/Components/Sources/RadioText.py
+++ b/lib/python/Components/Sources/RadioText.py
@@ -16,8 +16,7 @@ class RadioText(PerServiceBase, Source, object):
@cached
def getText(self):
service = self.navcore.getCurrentService()
- info = service and service.radioText()
- return info and info.getRadioText()
+ return service and service.radioText()
radiotext = property(getText)