From 197027510e5ead23a122aa1a6e51f2a231b00e2c Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 27 Oct 2009 03:08:47 +0000 Subject: [PATCH] Fix #1047 move completed does not work if saving to non default path --- ChangeLog | 4 ++++ deluge/core/torrentmanager.py | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0a1a9d624..84df10e72 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +=== Deluge 1.2.0_rc3 (In Development) === +==== Core ==== + * Fix #1047 move completed does not work if saving to non default path + === Deluge 1.2.0_rc2 (25 October 2009) === ==== GtkUI ==== * Fix path errors when adding torrents externally in Windows diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index 152eec71c..11fc2f3ef 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -784,8 +784,7 @@ class TorrentManager(component.Component): if torrent.options["move_completed"] and total_download: move_path = torrent.options["move_completed_path"] - if torrent.options["download_location"] != move_path and \ - torrent.options["download_location"] == self.config["download_location"]: + if torrent.options["download_location"] != move_path: torrent.move_storage(move_path) torrent.is_finished = True