From aad0595e45233f8935840347bae2d274beb3a88e Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Tue, 16 Feb 2021 09:56:33 -0700 Subject: [PATCH] cisco_wifi_ctl.py: bug fix Signed-off-by: Chuck SmileyRekiere --- cisco_wifi_ctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cisco_wifi_ctl.py b/cisco_wifi_ctl.py index d799876c..43a3959b 100755 --- a/cisco_wifi_ctl.py +++ b/cisco_wifi_ctl.py @@ -957,7 +957,7 @@ def main(): if ((args.action == "auto_rf") and ((args.ap is None))): raise Exception("auto_rf requires AP name") - if ((args.action == "auto_rf") and ((args.ap is None))): + if (args.action == "auto_rf"): command = "show ap auto-rf 802.11a %s"%(args.ap) if ((args.action == "ap_country") and ((args.value is None) or (args.ap is None))):