| branch | devel |
| changeset 169 | aabc04843d25 |
| parent 166 | 6d6890f7e3f8 |
| child 192 | 6c708c334f37 |
--- a/iro/model/message.py Wed Feb 15 14:43:37 2012 +0100 +++ b/iro/model/message.py Sat Feb 18 17:13:38 2012 +0100 @@ -19,8 +19,9 @@ return not self.__eq__(other) class SMS(Message): - def __init__(self, cont): + def __init__(self, cont, from_ = None): Message.__init__(self, cont, typ="sms") + self.from_ = from_ def sendto(self,anbieter,recipients): anbieter.sendSMS(self,recipients)