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"