From 04d57855f81068a1f39d1338b045aa9a1bf60512 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 15 May 2006 17:01:31 -0400 Subject: [PATCH] Actually use the group address now that we have it --- sugar/p2p/NotificationListener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sugar/p2p/NotificationListener.py b/sugar/p2p/NotificationListener.py index dd48acac..bce9dc8f 100644 --- a/sugar/p2p/NotificationListener.py +++ b/sugar/p2p/NotificationListener.py @@ -4,7 +4,7 @@ import network class NotificationListener: def __init__(self, group, name): service = group.get_service(name, Notifier.TYPE) - server = network.GroupServer(service.get_address(), + server = network.GroupServer(service.get_group_address(), service.get_port(), self._recv_multicast) server.start()