Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chat/p2p.py
diff options
context:
space:
mode:
Diffstat (limited to 'chat/p2p.py')
-rw-r--r--chat/p2p.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chat/p2p.py b/chat/p2p.py
index fb21eb9..df223d1 100644
--- a/chat/p2p.py
+++ b/chat/p2p.py
@@ -13,7 +13,7 @@ class GroupRequestHandler(object):
def message(self, message):
address = network.get_authinfo()
- self._group.recv(address, message)
+ self._group.recv(address[0], message)
class Owner:
instance = None