diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-06-15 17:34:06 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-06-15 17:34:06 +0000 |
| commit | 2e874fa14264bf37f17ae9b9375e26059e7f35ec (patch) | |
| tree | ceb5244659b57714fb4609914f3146630f045c4a /lib/python/Components/Converter/StaticText.py | |
| parent | e131b75fd194db84a37f2395b5ab88093e09192f (diff) | |
| download | enigma2-2e874fa14264bf37f17ae9b9375e26059e7f35ec.tar.gz enigma2-2e874fa14264bf37f17ae9b9375e26059e7f35ec.zip | |
add new skin stuff
Diffstat (limited to 'lib/python/Components/Converter/StaticText.py')
| -rw-r--r-- | lib/python/Components/Converter/StaticText.py | 7 |
1 files changed, 7 insertions, 0 deletions
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) + |
