aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/VariableText.py4
1 files 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 "")