From e773b3b1f3a2a775b5c5b1abed5405c528c3a159 Mon Sep 17 00:00:00 2001 From: Andrew Psaltis Date: Fri, 20 Aug 2010 17:38:52 -0400 Subject: [PATCH] Scan the SSID by default, should make wicd a bit more cooperative at handling hidden SSIDs. Set scan_ssid in the templates to "1" by default, instead of "0". --- wicd/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicd/misc.py b/wicd/misc.py index da42782..373efae 100644 --- a/wicd/misc.py +++ b/wicd/misc.py @@ -257,7 +257,7 @@ def ParseEncryption(network): if cur_val: if cur_val[0] == 'SCAN': #TODO should this be hardcoded? - line = line.replace("$_SCAN", "0") + line = line.replace("$_SCAN", "1") config_file = ''.join([config_file, line]) else: rep_val = network.get(cur_val[0].lower())