From e681c9183e23fa18365bd903cf85d8566ba5b97e Mon Sep 17 00:00:00 2001 From: Ido Abramovich Date: Sun, 11 Jan 2009 00:05:50 +0000 Subject: [PATCH] fix get_torrent_status to use filter dictionary --- deluge/ui/console/mapping.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/mapping.py b/deluge/ui/console/mapping.py index 2fbbe04d7..010f5ee44 100644 --- a/deluge/ui/console/mapping.py +++ b/deluge/ui/console/mapping.py @@ -43,7 +43,7 @@ def get_names(torrents): except Exception, e: print e - client.get_torrents_status(_got_torrents_status, torrents, ['name']) + client.get_torrents_status(_got_torrents_status, {'id':torrents}, ['name']) client.force_call() return names