From 10816cb8f408212686a744e697a2fb078ba432cc Mon Sep 17 00:00:00 2001 From: Nick Lanham Date: Tue, 22 Feb 2011 12:32:32 +0100 Subject: [PATCH] always have a torrents list, in case get_torrent_name gets called from a mode without get_torrent_name in new ui --- deluge/ui/console/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/console/main.py b/deluge/ui/console/main.py index 31692afb5..8114dbb8a 100644 --- a/deluge/ui/console/main.py +++ b/deluge/ui/console/main.py @@ -279,9 +279,9 @@ Please use commands from the command line, eg:\n def start(self): # Maintain a list of (torrent_id, name) for use in tab completion + self.torrents = [] if not self.interactive: self.started_deferred = defer.Deferred() - self.torrents = [] def on_session_state(result): def on_torrents_status(torrents): for torrent_id, status in torrents.items():