From 4f389246e28d940bc829635fd3d7ab43e763312d Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sun, 29 Jul 2007 03:27:44 +0000 Subject: [PATCH] add deluge icon to libnotify message --- plugins/TorrentNotification/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/TorrentNotification/__init__.py b/plugins/TorrentNotification/__init__.py index 2c2ab0f05..e2622411e 100644 --- a/plugins/TorrentNotification/__init__.py +++ b/plugins/TorrentNotification/__init__.py @@ -89,9 +89,9 @@ class TorrentNotification: if len(file_info) > 10: filelist += '...' - if pynotify.init("My Application Name"): + if pynotify.init("Deluge"): n = pynotify.Notification(_("Torrent complete"), - _("Files") + ":\n" + filelist) + _("Files") + ":\n" + filelist, deluge.common.get_pixmap("deluge32.png")) n.show() else: print "there was a problem initializing the pynotify module"