From 85eaabcfff64034cf260450c9ebddf0cd6c22d34 Mon Sep 17 00:00:00 2001 From: compwiz18 <> Date: Mon, 3 Mar 2008 06:08:45 +0000 Subject: [PATCH] Fixed a bug that wouldn't let wireless interfaces scan --- daemon.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 0c44c1b..192b065 100644 --- a/daemon.py +++ b/daemon.py @@ -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: