X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FConverter%2FRadioText.py;h=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hp=59885c0a689602ed8d1b0f4aa6c8288421eafa58;hb=b332b11ee2f3fd450493b55507324c74d96b20e8;hpb=70e31a71b96ab395123c0620c841d913005304f3 diff --git a/lib/python/Components/Converter/RadioText.py b/lib/python/Components/Converter/RadioText.py index 59885c0..e69de29 100644 --- a/lib/python/Components/Converter/RadioText.py +++ b/lib/python/Components/Converter/RadioText.py @@ -1,17 +0,0 @@ -from Components.Converter.Converter import Converter -from Components.Element import cached - -class RadioText(Converter, object): - def __init__(self, type): - Converter.__init__(self, type) - self.type = type - - @cached - def getText(self): - rt = self.source.radiotext - text = "" - if rt: - if self.type == "RadioText": - text = rt.getRadioText() - return text.decode("latin-1").encode("utf-8") - text = property(getText)