From 92300133b83211a34ebefde2ba1098ced9b8b4a4 Mon Sep 17 00:00:00 2001 From: Dan O'Reilly Date: Tue, 23 Dec 2008 18:23:38 -0500 Subject: [PATCH] Fix "_" getting stripped from interface names. --- wicd/wnettools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicd/wnettools.py b/wicd/wnettools.py index 0a0b9c2..5c70c75 100644 --- a/wicd/wnettools.py +++ b/wicd/wnettools.py @@ -41,7 +41,7 @@ import misc RALINK_DRIVER = 'ralink legacy' -blacklist_strict = punctuation.replace("-", "") + " " +blacklist_strict = '!"#$%&\'()*+,./:;<=>?@[\\]^`{|}~ ' blacklist_norm = ";`$!*|><&\\" blank_trans = maketrans("", "")