From 557b9ef9e84f546721e0c643165866853f2bed7c Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sat, 24 Nov 2007 14:06:40 +0000 Subject: [PATCH] 'None' as self.message is ok, will be treated as empty string --- lib/python/Components/VariableText.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python/Components/VariableText.py b/lib/python/Components/VariableText.py index d20e5193..c9533091 100644 --- a/lib/python/Components/VariableText.py +++ b/lib/python/Components/VariableText.py @@ -9,7 +9,7 @@ class VariableText(object): def setText(self, text): self.message = text if self.instance: - self.instance.setText(self.message) + self.instance.setText(self.message or "") def setMarkedPos(self, pos): if self.instance: @@ -21,4 +21,4 @@ class VariableText(object): text = property(getText, setText) def postWidgetCreate(self, instance): - instance.setText(self.message) + instance.setText(self.message or "") -- 2.30.2