aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Converter/StaticText.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-07-24 23:55:12 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-07-24 23:55:12 +0000
commit911466bd5e018b80dfbbd5e12c4923e89a980792 (patch)
tree738e80806095f84510ca7efab7845b1fac4d95cb /lib/python/Components/Converter/StaticText.py
parent7d7331ac43c18159a7ebeb652e0e7d971118a8f7 (diff)
downloadenigma2-911466bd5e018b80dfbbd5e12c4923e89a980792.tar.gz
enigma2-911466bd5e018b80dfbbd5e12c4923e89a980792.zip
use single argument only
Diffstat (limited to 'lib/python/Components/Converter/StaticText.py')
-rw-r--r--lib/python/Components/Converter/StaticText.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Converter/StaticText.py b/lib/python/Components/Converter/StaticText.py
index 12eb6ad5..d3a67b24 100644
--- a/lib/python/Components/Converter/StaticText.py
+++ b/lib/python/Components/Converter/StaticText.py
@@ -1,7 +1,7 @@
from Components.Converter.Converter import Converter
class StaticText(Converter, object):
- def __init__(self, text, *args, **kwargs):
- Converter.__init__(self)
+ def __init__(self, text):
+ Converter.__init__(self, type)
self.text = str(text)