From 358b5f4b19b06da737f8b4d9736e3fe627fecaeb Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sun, 13 Dec 2009 21:46:55 +0000 Subject: [PATCH] Fix issue where hosts will show up erroneously as Offline --- deluge/ui/gtkui/connectionmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/connectionmanager.py b/deluge/ui/gtkui/connectionmanager.py index d76e0fcac..24108b895 100644 --- a/deluge/ui/gtkui/connectionmanager.py +++ b/deluge/ui/gtkui/connectionmanager.py @@ -283,7 +283,7 @@ class ConnectionManager(component.Component): d.addCallback(on_info, c) d.addErrback(on_info_fail, c) - def on_connect_failed(reason, host_info): + def on_connect_failed(reason, host_id): if not self.running: return row = self.__get_host_row(host_id)