Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-04-27 11:01:41 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-04-27 11:01:41 (GMT)
commit395d3f5c9654d0fe9e07a469e0dac533d31c2301 (patch)
tree6b499fabbf227d861cc12bf131c7bc6f26ca6bd2 /services
parenta9f26a1faafd218933c8616965f7f595f2fef266 (diff)
Fix.
Diffstat (limited to 'services')
-rw-r--r--services/presence/presenceservice.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/presence/presenceservice.py b/services/presence/presenceservice.py
index 1312fec..d90eb56 100644
--- a/services/presence/presenceservice.py
+++ b/services/presence/presenceservice.py
@@ -36,8 +36,8 @@ _PRESENCE_PATH = "/org/laptop/Sugar/Presence"
class NotFoundError(dbus.DBusException):
- def __init__(self):
- dbus.DBusException.__init__(self)
+ def __init__(self, msg):
+ dbus.DBusException.__init__(self, msg)
self._dbus_error_name = _PRESENCE_INTERFACE + '.NotFound'
class DBusGObjectMetaclass(dbus.service.InterfaceType, gobject.GObjectMeta): pass