aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Converter/RadioText.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/python/Components/Converter/RadioText.py b/lib/python/Components/Converter/RadioText.py
index 59885c0a..e69de29b 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)