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

This commit is contained in:
Ruckus-Ansible 2020-01-24 18:28:51 +05:30 committed by Abhijeet Kasurde
parent ff35103bf9
commit de2985df84

View file

@ -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: