From 2e874fa14264bf37f17ae9b9375e26059e7f35ec Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 15 Jun 2006 17:34:06 +0000 Subject: add new skin stuff --- lib/python/Components/Converter/StaticText.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/python/Components/Converter/StaticText.py (limited to '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 index 00000000..12eb6ad5 --- /dev/null +++ b/lib/python/Components/Converter/StaticText.py @@ -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) + -- cgit v1.2.3