Skip to content

Commit 8e7c813

Browse files
committed
fix: bad manifest version pattern
1 parent fcc57ab commit 8e7c813

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

beet/contrib/vanilla.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ def __init__(
213213
def missing(self, key: str) -> Release:
214214
pattern = re.compile(
215215
"^"
216-
"|".join(
216+
+ "|".join(
217217
r"\d+".join(map(re.escape, k.split("*")))
218-
for k in {key, key.removesuffix(".*")}
218+
for k in [key, key.removesuffix(".*")]
219219
)
220220
+ "$"
221221
)

0 commit comments

Comments
 (0)