Remove shutdown() from TorrentManager because stop() is already called
during a component shutdown.
This commit is contained in:
parent
494c0cc558
commit
d32ffa7ace
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue