From c4e4647f4b9fddc65309cca8d4e95d10aaee37c1 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 17 Nov 2008 06:37:56 +0000 Subject: [PATCH] Do not set per-torrent stop_seed_ratio settings based on the global settings when adding torrents --- deluge/core/torrent.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index a40255d02..e6fdf3673 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -60,9 +60,9 @@ class TorrentOptions(dict): "max_upload_slots": "max_upload_slots_per_torrent", "prioritize_first_last_pieces": "prioritize_first_last_pieces", "auto_managed": "auto_managed", - "stop_at_ratio": "stop_seed_at_ratio", - "stop_ratio": "stop_seed_ratio", - "remove_at_ratio": "remove_seed_at_ratio", + "stop_at_ratio": False, + "stop_ratio": 2.0, + "remove_at_ratio": False, "move_completed": "move_completed", "move_completed_path": "move_completed_path", "file_priorities": [],