From d32ffa7ace5fd837fe91b5109c799a4105ffd327 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 11 Feb 2008 03:13:07 +0000 Subject: [PATCH] Remove shutdown() from TorrentManager because stop() is already called during a component shutdown. --- deluge/core/torrentmanager.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index 6417390a9..78209c32b 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -119,9 +119,6 @@ class TorrentManager(component.Component): self.pause_all() for key in self.torrents.keys(): self.torrents[key].write_fastresume() - - def shutdown(self): - self.stop() def __getitem__(self, torrent_id): """Return the Torrent with torrent_id"""