From 911466bd5e018b80dfbbd5e12c4923e89a980792 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 24 Jul 2006 23:55:12 +0000 Subject: use single argument only --- lib/python/Components/Converter/StaticText.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/python/Components/Converter/StaticText.py') 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) -- cgit v1.2.3