From 9d3cc64197312e61754b4e75631aeea4460afe08 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 1 Feb 2009 21:12:11 +0000 Subject: [PATCH] typo in string splitting --- src/notify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notify.py b/src/notify.py index 55d62ef3c..e64cba4a4 100644 --- a/src/notify.py +++ b/src/notify.py @@ -513,8 +513,8 @@ class DesktopNotification: timeout = gajim.config.get('notification_timeout') # in seconds ntype = self.ntype if self.kde_notifications: - notification_text = '' + \ - '%(title)s
%(text)s' % {'title': self.title, + notification_text = ('' \ + '%(title)s
%(text)s') % {'title': self.title, 'text': self.text, 'image': self.path_to_image} gajim_icon = os.path.abspath(os.path.join(gajim.DATA_DIR, 'pixmaps', 'gajim.png'))