Remove shutdown() from TorrentManager because stop() is already called

during a component shutdown.
This commit is contained in:
Andrew Resch 2008-02-11 03:13:07 +00:00
parent 494c0cc558
commit d32ffa7ace
1 changed files with 0 additions and 3 deletions

View File

@ -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"""