From f8ee16fc8dd0c0448b3471bf55bd9ea5781ad902 Mon Sep 17 00:00:00 2001 From: Adam Blackburn Date: Mon, 23 Nov 2009 11:43:50 -0600 Subject: [PATCH] make setting the essid work even if the essid is a reserved word --- wicd/wnettools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicd/wnettools.py b/wicd/wnettools.py index 73343bc..caa0764 100644 --- a/wicd/wnettools.py +++ b/wicd/wnettools.py @@ -856,7 +856,7 @@ class BaseWirelessInterface(BaseInterface): essid -- essid to set the interface to """ - cmd = ['iwconfig', self.iface, 'essid', str(essid)] + cmd = ['iwconfig', self.iface, 'essid', '--', str(essid)] if self.verbose: print str(cmd) misc.Run(cmd)