1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-19 20:38:00 +01:00

Fixed a bug that wouldn't let wireless interfaces scan

This commit is contained in:
compwiz18
2008-03-03 06:08:45 +00:00
parent 0386fc4ff4
commit 85eaabcfff

View File

@@ -1249,7 +1249,12 @@ class ConnectionWizard(dbus.service.Object):
os.chown(self.wired_conf, 0, 0)
print "autodetected wireless interface...", self.DetectWirelessInterface()
print "using wireless interface...", self.GetWirelessInterface()[5:]
print "using wireless interface...", self.GetWirelessInterface()
# Set the interfaces up
# and load the wnettools for them
self.wifi.LoadInterfaces()
self.wired.LoadInterfaces()
class ConnectionStatus: