1
0
Fork 0

fix(api): allow spaces in wildcard filenames

This commit is contained in:
Sean Sube 2023-12-16 15:21:49 -06:00
parent cdbdd9b4e2
commit 02dd17aa4f
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ REGION_TOKEN = compile(
r"\<region:(\d+):(\d+):(\d+):(\d+):(-?[\.|\d]+):(-?[\.|\d]+_?[TLBR]*):([^\>]+)\>"
)
RESEED_TOKEN = compile(r"\<reseed:(\d+):(\d+):(\d+):(\d+):(-?\d+)\>")
WILDCARD_TOKEN = compile(r"__([-/\\\w\.]+)__")
WILDCARD_TOKEN = compile(r"__([-/\\\w\. ]+)__")
INTERVAL_RANGE = compile(r"(\w+)-{(\d+),(\d+)(?:,(\d+))?}")
ALTERNATIVE_RANGE = compile(r"\(([^\)]+)\)")