diff -r 42b55855e3a6 -r aabc04843d25 iro/model/message.py --- 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)