From 50e6b343c32f0287119b96854015280726d3e946 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Wed, 23 Jan 2008 01:53:20 +0000 Subject: [PATCH] Fix removing torrents options in WebUI. They were reversed. --- deluge/ui/webui/webui_plugin/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/webui/webui_plugin/pages.py b/deluge/ui/webui/webui_plugin/pages.py index 92b2f9ba2..8ed068048 100644 --- a/deluge/ui/webui/webui_plugin/pages.py +++ b/deluge/ui/webui/webui_plugin/pages.py @@ -248,7 +248,7 @@ class torrent_delete: vars = web.input(data_also = None, torrent_also = None) data_also = bool(vars.data_also) torrent_also = bool(vars.torrent_also) - ws.proxy.remove_torrent(torrent_ids, data_also, torrent_also) + ws.proxy.remove_torrent(torrent_ids, torrent_also, data_also) do_redirect() class torrent_queue_up: