mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix exception handling
This commit is contained in:
parent
c480132fa2
commit
42118932f2
2 changed files with 2 additions and 2 deletions
|
@ -598,7 +598,7 @@ class TorrentManager(component.Component):
|
|||
# Remove the torrent from deluge's session
|
||||
try:
|
||||
del self.torrents[torrent_id]
|
||||
except KeyError, ValueError:
|
||||
except (KeyError, ValueError):
|
||||
return False
|
||||
|
||||
# Save the session state
|
||||
|
|
|
@ -516,7 +516,7 @@ class TorrentView(listview.ListView, component.Component):
|
|||
return []
|
||||
|
||||
return torrent_ids
|
||||
except ValueError, TypeError:
|
||||
except (ValueError, TypeError):
|
||||
return []
|
||||
|
||||
def get_torrent_status(self, torrent_id):
|
||||
|
|
Loading…
Add table
Reference in a new issue