Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mrDoctorWho/vk4xmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormrDoctorWho <mrdoctorwho@gmail.com>2015-05-03 13:20:01 +0300
committermrDoctorWho <mrdoctorwho@gmail.com>2015-05-03 13:20:01 +0300
commita803d44b2a2138aa928b4ebe951ea2674a772511 (patch)
tree26112d6c76278983c9809ebbe75e0fb3b9d8d07e
parent68e06cd71ce2a07aac3fa21ef372b101261d3314 (diff)
Fix features list for mod_msg_main
-rw-r--r--modules/mod_msg_main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mod_msg_main.py b/modules/mod_msg_main.py
index d658149..ed53e05 100644
--- a/modules/mod_msg_main.py
+++ b/modules/mod_msg_main.py
@@ -81,5 +81,5 @@ def message_handler(cl, msg):
MOD_TYPE = "message"
-MOD_FEATURES = xmpp.NS_RECEIPTS
+MOD_FEATURES = [xmpp.NS_RECEIPTS]
MOD_HANDLERS = ((message_handler, "", "", False),) \ No newline at end of file