Fix exception handling

This commit is contained in:
Andrew Resch 2012-08-06 15:54:28 -07:00
parent c480132fa2
commit 42118932f2
2 changed files with 2 additions and 2 deletions

View File

@ -598,7 +598,7 @@ class TorrentManager(component.Component):
# Remove the torrent from deluge's session # Remove the torrent from deluge's session
try: try:
del self.torrents[torrent_id] del self.torrents[torrent_id]
except KeyError, ValueError: except (KeyError, ValueError):
return False return False
# Save the session state # Save the session state

View File

@ -516,7 +516,7 @@ class TorrentView(listview.ListView, component.Component):
return [] return []
return torrent_ids return torrent_ids
except ValueError, TypeError: except (ValueError, TypeError):
return [] return []
def get_torrent_status(self, torrent_id): def get_torrent_status(self, torrent_id):