Hi! This is a trivial patch that fixes the obviously intended behavior of keeping a list of BSSIDs (MAC addresses) for each ESS. I've tested that BSSIDs now appear correctly in networks.cfg in my 656 XO, (this has been there since Feb 2007 according to git). I hope it's useful.
-- -Andrés
diff --git a/src/hardware/nminfo.py b/src/hardware/nminfo.py
index a703ff6..fdc4ac2 100644
--- a/src/hardware/nminfo.py
+++ b/src/hardware/nminfo.py
@@ -332,7 +333,7 @@ class Network:
config.set(self.ssid, "timestamp", self.timestamp)
if len(self.bssids) > 0:
opt = " "
- opt.join(self.bssids)
+ opt = opt.join(self.bssids)
config.set(self.ssid, "bssids", opt)
self._security.write_to_config(self.ssid, config)
except Exception, e:
signature.asc
Description: This is a digitally signed message part.
_______________________________________________ Sugar mailing list [email protected] http://lists.laptop.org/listinfo/sugar

