Update lib/spack/spack/spec.py

This commit is contained in:
psakievich 2025-01-28 21:45:03 -07:00 committed by psakiev
parent 3daf5d0e8d
commit 0b81a52476

View File

@ -152,7 +152,7 @@
r"(})?" # finish format string with non-escaped close brace }, or missing if not present
r"|"
# OPTION 3: mismatched close brace (option 2 would consume a matched open brace)
r"(})" r")", # brace
r"(})" # brace
r")",
re.IGNORECASE,
)