Skip to content

Commit

Permalink
Attempt to update regex.
Browse files Browse the repository at this point in the history
  • Loading branch information
JSKenyon committed Nov 28, 2024
1 parent 30b0ede commit 23b450e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tigger/bin/tigger_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def lookupObject(src, tagname):
for arg in rem_args[1:]:
# Match either the SELTAG<>SELVAL, or the TAG=[TYPE:]VALUE, or the [+!/]TAG forms
# If none match, assume the NAME form
mselcomp = re.match("^(?i)([^=<>!.]+)(%s)([^dms]+)([dms])?" % "|".join(
mselcomp = re.match("(?i)^([^=<>!.]+)(%s)([^dms]+)([dms])?" % "|".join(
[key.replace('.', '\.') for key in list(select_predicates.keys())]), arg)
mseltag = re.match("=(.+)$", arg)
mset = re.match("^(.+)=((bool|int|str|float|complex):)?(.+)$", arg)
Expand Down

0 comments on commit 23b450e

Please sign in to comment.