From 3c183906d1303d8eb9d272c8babd6a198ed04dab Mon Sep 17 00:00:00 2001 From: Martijn Voncken Date: Mon, 25 Aug 2008 20:02:02 +0000 Subject: [PATCH] fix multiple-resume, there is no torrent_resumed method in core --- deluge/core/core.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deluge/core/core.py b/deluge/core/core.py index ad314c0d1..0b14d2e69 100644 --- a/deluge/core/core.py +++ b/deluge/core/core.py @@ -407,8 +407,7 @@ class Core( def export_resume_torrent(self, torrent_ids): log.debug("Resuming: %s", torrent_ids) for torrent_id in torrent_ids: - if self.torrents[torrent_id].resume(): - self.torrent_resumed(torrent_id) + self.torrents[torrent_id].resume() def export_get_status_keys(self): """