Fix **kwargs ommision.

This commit is contained in:
Luke Mullan
2017-06-28 17:31:52 +10:00
parent fc945f093c
commit 7d35538962
+1 -1
View File
@@ -25,7 +25,7 @@ class NotificationView(FlaskView):
return ('', 204) return ('', 204)
@cbpi.event("MESSAGE", async=True) @cbpi.event("MESSAGE", async=True)
def messageEvent(message): def messageEvent(message, **kwargs):
""" """
React on message event. add the message to the cache and push the message to the clients React on message event. add the message to the cache and push the message to the clients
:param message: the message :param message: the message