Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chat
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2006-05-05 18:39:10 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2006-05-05 18:39:10 (GMT)
commit8939bc6bb1eebd11941bd6b95a86f48bf901bed3 (patch)
tree17c86b068950a040d4864aac63f15cc2cf92fc8a /chat
parent992dbc9662d4c7e6659fbd397c3d3b89ef0387a9 (diff)
xmlrpc requires a return value
Diffstat (limited to 'chat')
-rw-r--r--chat/p2p.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/chat/p2p.py b/chat/p2p.py
index df223d1..381180b 100644
--- a/chat/p2p.py
+++ b/chat/p2p.py
@@ -14,6 +14,7 @@ class GroupRequestHandler(object):
def message(self, message):
address = network.get_authinfo()
self._group.recv(address[0], message)
+ return True
class Owner:
instance = None