Fixed a missing **kwargs relay from last commit

This commit is contained in:
Griatch 2014-08-24 10:08:22 +02:00
parent a88afabd60
commit 7bba75b9ff

View file

@ -326,7 +326,7 @@ class Object(TypeClass):
useful for coders intending to implement some sort of nested
command structure.
"""
return self.dbobj.execute_cmd(raw_string, sessid=sessid)
return self.dbobj.execute_cmd(raw_string, sessid=sessid, **kwargs)
def msg(self, text=None, from_obj=None, sessid=None, **kwargs):
"""