Lint: W605 invalid escape sequence '\^'

This commit is contained in:
2020-11-06 18:59:30 -05:00
parent 63f4f9aed7
commit 639937f9c2
6 changed files with 14 additions and 14 deletions

View File

@ -567,7 +567,7 @@ def get_list_dhcp(zk_conn, network, limit, only_static=False, is_fuzzy=True):
limit = '^' + limit + '$'
# Implcitly assume fuzzy limits
if not re.match('\^.*', limit):
if not re.match('[^].*', limit):
limit = '.*' + limit
if not re.match('.*\$', limit):
limit = limit + '.*'
@ -612,7 +612,7 @@ def get_list_acl(zk_conn, network, limit, direction, is_fuzzy=True):
limit = '^' + limit + '$'
# Implcitly assume fuzzy limits
if not re.match('\^.*', limit):
if not re.match('[^].*', limit):
limit = '.*' + limit
if not re.match('.*\$', limit):
limit = limit + '.*'