mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-02 11:48:03 +00:00
Fixed the missing parameter issue
Signed-off-by: jitendra-kushavah <jitendra.kushavah@candelatech.com>
This commit is contained in:
@@ -299,7 +299,7 @@ class StationProfile:
|
||||
if (value == 1) and (param_name not in self.desired_add_sta_flags):
|
||||
self.desired_add_sta_flags.append(param_name)
|
||||
self.desired_add_sta_flags_mask.append(param_name)
|
||||
elif value == 0:
|
||||
elif value == 0 and (param_name in self.desired_add_sta_flags):
|
||||
self.desired_add_sta_flags.remove(param_name)
|
||||
self.desired_add_sta_flags_mask.append(param_name)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user