1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-29 01:42:33 +01:00

Merged fox 2011-07-03 Fixed wireless connecting status message

This commit is contained in:
David Paleino
2011-08-07 22:39:08 +02:00
4 changed files with 9 additions and 10 deletions

View File

@@ -1152,8 +1152,9 @@ class WirelessDaemon(dbus.service.Object):
def CheckWirelessConnectingMessage(self):
""" Returns the wireless interface's status message. """
if not self.wifi.connecting_thread == None:
essid = self.wifi.connecting_thread.network["essid"]
stat = self.wifi.connecting_thread.GetStatus()
return stat
return essid, stat
else:
return False