diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index 060d34d93..6e9b887a8 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -295,6 +295,12 @@ class Torrent: def set_remove_at_ratio(self, remove_at_ratio): self.options["remove_at_ratio"] = remove_at_ratio + def set_move_completed(self, move_completed): + self.options["move_completed"] = move_completed + + def set_move_completed_path(self, move_completed_path): + self.options["move_completed_path"] = move_completed_path + def set_file_priorities(self, file_priorities): if len(file_priorities) != len(self.files): log.debug("file_priorities len != num_files")