From eec500521460ee032bb728549d9b0af35e0e4885 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sat, 13 Sep 2008 02:58:45 +0000 Subject: [PATCH] Fix moving on complete --- deluge/core/torrentmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index 31d510d2c..34ca9cf98 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -614,7 +614,7 @@ class TorrentManager(component.Component): elif self.config["move_completed"]: move_path = self.config["move_completed_path"] if move_path: - if torrent.save_path != move_path: + if torrent.options["download_location"] != move_path: torrent.move_storage(move_path) torrent.is_finished = True