Correctly rename at_message_send/receive to at_msg_send/receive in accounts. Resolves #1439.

This commit is contained in:
Griatch 2017-09-21 09:32:00 +02:00
parent 703dc9da91
commit f47d15acf8

View file

@ -810,7 +810,7 @@ class DefaultAccount(with_metaclass(TypeclassBase, AccountDB)):
"""
pass
def at_message_receive(self, message, from_obj=None, **kwargs):
def at_msg_receive(self, message, from_obj=None, **kwargs):
"""
This is currently unused.
@ -821,7 +821,7 @@ class DefaultAccount(with_metaclass(TypeclassBase, AccountDB)):
"""
return True
def at_message_send(self, message, to_object, **kwargs):
def at_msg_send(self, message, to_object, **kwargs):
"""
This is currently unused.