Skip to content

Commit

Permalink
fix: bad manifest version pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
vberlier committed Jul 24, 2024
1 parent fcc57ab commit 8e7c813
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beet/contrib/vanilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,9 @@ def __init__(
def missing(self, key: str) -> Release:
pattern = re.compile(
"^"
"|".join(
+ "|".join(
r"\d+".join(map(re.escape, k.split("*")))
for k in {key, key.removesuffix(".*")}
for k in [key, key.removesuffix(".*")]
)
+ "$"
)
Expand Down

0 comments on commit 8e7c813

Please sign in to comment.