Fix branch didn't check word_boundary
This commit is contained in:
parent
5cd2126a6a
commit
47f82e4408
|
@ -273,10 +273,16 @@ def _glob_matches(glob, value, word_boundary=False):
|
|||
),
|
||||
r,
|
||||
)
|
||||
r = r + "$"
|
||||
r = re.compile(r, flags=re.IGNORECASE)
|
||||
if word_boundary:
|
||||
r = "\b%s\b" % (r,)
|
||||
r = re.compile(r, flags=re.IGNORECASE)
|
||||
|
||||
return r.match(value)
|
||||
return r.search(value)
|
||||
else:
|
||||
r = r + "$"
|
||||
r = re.compile(r, flags=re.IGNORECASE)
|
||||
|
||||
return r.match(value)
|
||||
elif word_boundary:
|
||||
r = re.escape(glob)
|
||||
r = "\b%s\b" % (r,)
|
||||
|
|
Loading…
Reference in New Issue