From 880da6fb531014e1db1ebc5836c18dda09c4f213 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Wed, 23 Nov 2005 00:17:02 +0000 Subject: [PATCH] revert a commit until better fix is here; notifaction-daemon popups are back! --- src/notify.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/notify.py b/src/notify.py index a0fc5b886..fa4376cbd 100644 --- a/src/notify.py +++ b/src/notify.py @@ -47,9 +47,10 @@ def dbus_get_interface(): bus = dbus.SessionBus() obj = bus.get_object('org.freedesktop.DBus', '/org/freedesktop/DBus') dbus_iface = dbus.Interface(obj, 'org.freedesktop.DBus') - avail = dbus_iface.ListNames() - if not interface in avail: - return None + #FIXME: this just disables notification-daemon for 99% of users + #avail = dbus_iface.ListNames() + #if not interface in avail: + # return None obj = bus.get_object(interface, path) return dbus.Interface(obj, interface) except Exception, e: