icx_vlan: Removed byte type regex in string matching (#66715)
This commit is contained in:
parent
ff35103bf9
commit
de2985df84
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue