From 88078e7ac2ee289a0dfc321d71c7494657c4457c Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Wed, 11 Oct 2006 14:14:59 +0000 Subject: always utf8 for radiotext --- lib/python/Components/Converter/RadioText.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'lib/python') diff --git a/lib/python/Components/Converter/RadioText.py b/lib/python/Components/Converter/RadioText.py index c47e02fb..59885c0a 100644 --- a/lib/python/Components/Converter/RadioText.py +++ b/lib/python/Components/Converter/RadioText.py @@ -9,11 +9,9 @@ class RadioText(Converter, object): @cached def getText(self): rt = self.source.radiotext - if rt is None: - return "" - text = rt.getRadioText() - if self.type == "RadioText-UTF8": - return text.decode("latin-1").encode("utf-8") - else: - return text + text = "" + if rt: + if self.type == "RadioText": + text = rt.getRadioText() + return text.decode("latin-1").encode("utf-8") text = property(getText) -- cgit v1.2.3