icx_vlan: Removed byte type regex in string matching (#66715)

pull/65959/merge
Ruckus-Ansible 5 years ago committed by Abhijeet Kasurde
parent ff35103bf9
commit de2985df84

@ -664,7 +664,7 @@ def map_config_to_obj(module):
def check_fail(module, output):
error = [
re.compile(br"^error", re.I)
re.compile(r"^error", re.I)
]
for x in output:
for regex in error:

Loading…
Cancel
Save