Fix to message.add_from_data

This commit is contained in:
Joscha 2016-05-06 15:02:15 +02:00
parent 6a0f4dc265
commit 2e18f4dbcb

View file

@ -16,7 +16,7 @@ class Messages():
Create a message from "raw" data and add it. Create a message from "raw" data and add it.
""" """
mes = message.Message(data) mes = message.Message.from_data(data)
self.add(mes) self.add(mes)