From 20edebbd336218a1a78ec91832a833b81cc15dd2 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sat, 7 Feb 2009 09:11:40 +0000 Subject: [PATCH] handle XFCE notification-daemon. Fixes #4556 --- src/notify.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/notify.py b/src/notify.py index e64cba4a4..6b2b7da14 100644 --- a/src/notify.py +++ b/src/notify.py @@ -619,6 +619,8 @@ class DesktopNotification: def version_reply_handler(self, name, vendor, version, spec_version=None): if spec_version: version = spec_version + elif vendor == 'Xfce' and version == '0.1.0': + version = '0.9' version_list = version.split('.') self.version = [] while len(version_list):