From 395d3f5c9654d0fe9e07a469e0dac533d31c2301 Mon Sep 17 00:00:00 2001 From: Tomeu Vizoso Date: Fri, 27 Apr 2007 13:01:41 +0200 Subject: [PATCH] Fix. --- services/presence/presenceservice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/presence/presenceservice.py b/services/presence/presenceservice.py index 1312fec0..d90eb56c 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