Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/p2p/Notifier.py
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2006-05-12 21:42:40 (GMT)
committer Dan Williams <dcbw@redhat.com>2006-05-12 21:42:40 (GMT)
commitae2eb70b6c534b36835e56d4c28ed4d82110df89 (patch)
treebfa2b7ef522c4795d87912ddb299f234e3c5c49a /sugar/p2p/Notifier.py
parentacf29ef25e52a18470084f5afa4bb97b8a57885f (diff)
Add import capability to SVGdraw.py
Diffstat (limited to 'sugar/p2p/Notifier.py')
-rw-r--r--sugar/p2p/Notifier.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/sugar/p2p/Notifier.py b/sugar/p2p/Notifier.py
deleted file mode 100644
index 017183c..0000000
--- a/sugar/p2p/Notifier.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import network
-
-class Notifier:
- def __init__(self, group, name):
- service = group.get_service(name)
- address = service.get_address()
- port = service.get_port()
- self._client = network.GroupClient(address, port)
-
- def notify(self, msg):
- self._client.send_msg(msg)