Starting the move of typeclass methods off *DB models and onto the typeclasses.

This commit is contained in:
Griatch 2014-12-22 22:46:58 +01:00
parent 9321573c23
commit 0b5e2b94ff
6 changed files with 21 additions and 21 deletions

View file

@ -547,7 +547,7 @@ class ObjectDB(TypedObject):
except Exception:
logger.log_trace()
try:
if not self.at_msg_receive(text=text, **kwargs)
if not self.at_msg_receive(text=text, **kwargs):
# if at_msg_receive returns false, we abort message to this object
return
except Exception: