Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chat/p2p.py
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2006-05-05 18:17:57 (GMT)
committer Dan Williams <dcbw@redhat.com>2006-05-05 18:17:57 (GMT)
commitca378af28663e304bfa969bdeb43b08ce138a950 (patch)
tree4ab93d6bd79cb3e0fa1f314cc1c95408005b6026 /chat/p2p.py
parent06fb5b3e8a44a26383df863b09bfd7022580349c (diff)
Print local traceback on XMLRPC server exceptions
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 df223d1..fb21eb9 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[0], message)
+ self._group.recv(address, message)
class Owner:
instance = None