From 1548ff463da000b91881d7b87a32abb61537eb1c Mon Sep 17 00:00:00 2001 From: Adam Blackburn Date: Sat, 29 May 2010 17:32:36 +0800 Subject: [PATCH] Debian patch: 21-fix_ESSID_setting.patch --- wicd/wnettools.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wicd/wnettools.py b/wicd/wnettools.py index 6ab4ebf..b1d4dbb 100644 --- a/wicd/wnettools.py +++ b/wicd/wnettools.py @@ -1088,9 +1088,7 @@ class BaseWirelessInterface(BaseInterface): bssid -- bssid of the network """ - cmd = ['iwconfig', self.iface, 'essid', essid] - if self.verbose: print str(cmd) - misc.Run(cmd) + self.SetEssid(essid) base = "iwconfig %s" % self.iface if channel and str(channel).isdigit(): cmd = "%s channel %s" % (base, str(channel))