Author: andar
Revision: 6019
Log:
Fix issue where hosts will show up erroneously as Offline
Diff:
Modified: branches/1.2_RC/ChangeLog
===================================================================
--- branches/1.2_RC/ChangeLog 2009-12-13 21:34:26 UTC (rev 6018)
+++ branches/1.2_RC/ChangeLog 2009-12-13 21:46:55 UTC (rev 6019)
@@ -24,6 +24,7 @@
while the window is visible.
* Fix #782 do not ask for tray password when window is not minimized to
tray
* Fix #1036 autoconnecting to localhost daemon on start-up
+ * Fix issue where hosts will show up erroneously as Offline
==== Console ====
* Fix using the console in Windows, but only in command-line mode
Modified: branches/1.2_RC/deluge/ui/gtkui/connectionmanager.py
===================================================================
--- branches/1.2_RC/deluge/ui/gtkui/connectionmanager.py 2009-12-13
21:34:26 UTC (rev 6018)
+++ branches/1.2_RC/deluge/ui/gtkui/connectionmanager.py 2009-12-13
21:46:55 UTC (rev 6019)
@@ -283,7 +283,7 @@
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)
Modified: trunk/deluge/ui/gtkui/connectionmanager.py
===================================================================
--- trunk/deluge/ui/gtkui/connectionmanager.py 2009-12-13 21:34:26 UTC (rev
6018)
+++ trunk/deluge/ui/gtkui/connectionmanager.py 2009-12-13 21:46:55 UTC (rev
6019)
@@ -283,7 +283,7 @@
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)
--
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en.