add new skin stuff
[enigma2.git] / lib / python / Components / Converter / StaticText.py
diff --git a/lib/python/Components/Converter/StaticText.py b/lib/python/Components/Converter/StaticText.py
new file mode 100644 (file)
index 0000000..12eb6ad
--- /dev/null
@@ -0,0 +1,7 @@
+from Components.Converter.Converter import Converter
+
+class StaticText(Converter, object):
+       def __init__(self, text, *args, **kwargs):
+               Converter.__init__(self)
+               self.text = str(text)
+