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

@ -120,9 +120,6 @@ class TorrentManager(component.Component):
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"""
return self.torrents[torrent_id]