summaryrefslogtreecommitdiffstats
path: root/deluge/plugins/Notifications/deluge_notifications/core.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2021-02-22 10:56:35 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2021-08-01 08:43:37 +0100
commite38f1173cf470f2f8373f2fa4edbb726c932c980 (patch)
treef6523dd1b2115065b91c4305baf5f27cf064c2ec /deluge/plugins/Notifications/deluge_notifications/core.py
parente1e0999de6575519be3567e72f65b3927bb9f362 (diff)
downloaddeluge-e38f1173cf470f2f8373f2fa4edbb726c932c980.tar.gz
deluge-e38f1173cf470f2f8373f2fa4edbb726c932c980.tar.bz2
deluge-e38f1173cf470f2f8373f2fa4edbb726c932c980.zip
[Notifications] Fix email KeyError with status name
Fix user reported error: Notification failure using email: [Failure instance: Traceback: <class 'KeyError'>: 'name' This was due to using empty dict used with get_status where a list of keys is now required or the all_keys parameter is used. Fixes: #3303
Diffstat (limited to 'deluge/plugins/Notifications/deluge_notifications/core.py')
-rw-r--r--deluge/plugins/Notifications/deluge_notifications/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/plugins/Notifications/deluge_notifications/core.py b/deluge/plugins/Notifications/deluge_notifications/core.py
index 123f9cf05..9eede4576 100644
--- a/deluge/plugins/Notifications/deluge_notifications/core.py
+++ b/deluge/plugins/Notifications/deluge_notifications/core.py
@@ -176,7 +176,7 @@ Date: %(date)s
def _on_torrent_finished_event(self, torrent_id):
log.debug('Handler for TorrentFinishedEvent called for CORE')
torrent = component.get('TorrentManager')[torrent_id]
- torrent_status = torrent.get_status({})
+ torrent_status = torrent.get_status(['name', 'num_files'])
# Email
subject = _('Finished Torrent "%(name)s"') % torrent_status
message = (