From 7d725fc1abb078a8babf8bd6869d37b8f3a4ffb6 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 18 May 2009 22:33:09 +0200 Subject: [PATCH] [Dicson] Don't try to translate empty string. Fixes #5032 --- src/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notify.py b/src/notify.py index b0675057f..68c843073 100644 --- a/src/notify.py +++ b/src/notify.py @@ -562,7 +562,7 @@ class DesktopNotification: dbus.UInt32(0), # replaces_id (uint) ntype, # event_id (string) dbus.String(gajim_icon), # app_icon (string) - dbus.String(_('')), # summary (string) + dbus.String(''), # summary (string) dbus.String(notification_text), # body (string) # actions (stringlist) (dbus.String('default'), dbus.String(self.event_type),