From bdcb11283baccdf0b97f2e3249807602d9996675 Mon Sep 17 00:00:00 2001 From: sascha Date: Mon, 17 Aug 2020 03:23:50 +0200 Subject: [PATCH] fix capabilities --- statnot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statnot b/statnot index e3cde56..be38240 100755 --- a/statnot +++ b/statnot @@ -231,7 +231,7 @@ class NotificationFetcher(dbus.service.Object): @dbus.service.method("org.freedesktop.Notifications", in_signature='', out_signature='as') def GetCapabilities(self): - return ("body") + return (["body"]) @dbus.service.signal('org.freedesktop.Notifications', signature='uu') def NotificationClosed(self, id_in, reason_in):