def add_text(self, sText):
        try:
            self.text.append(sText)
        except AttributeError:
            self.text = [sText]