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

Fixed wireless connecting status message

This commit is contained in:
fox
2011-07-03 19:16:50 +02:00
parent 340725e9a7
commit 92c58eef7f
4 changed files with 9 additions and 10 deletions

View File

@@ -1201,8 +1201,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