From 0a74f2ee618fc473c8672abea73dd907a744df2b Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 21 Nov 2005 07:58:24 +0000 Subject: [PATCH] fix a tb --- src/notify.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/notify.py b/src/notify.py index 793155ce0..71d9bfc0b 100644 --- a/src/notify.py +++ b/src/notify.py @@ -123,6 +123,7 @@ def dbus_notify(event_type, jid, account, msg_type = '', file_props = None): # get the name of the contact, as it is in the roster name = gajim.get_first_contact_instance_from_jid( account, receiver).name + filename = os.path.basename(file_props['file-name']) if event_type == _('File Transfer Completed'): txt = _('You successfully sent %(filename)s to %(name)s.')\ % {'filename': filename, 'name': name}