add "ascii" as a special 'path-restrict' value

This commit is contained in:
Mike Fährmann
2021-01-09 02:35:51 +01:00
parent 5818c928c4
commit 5d4494b15f
2 changed files with 2 additions and 0 deletions

View File

@@ -730,6 +730,7 @@ class PathFormat():
"auto" : "\\\\|/<>:\"?*" if WINDOWS else "/",
"unix" : "/",
"windows": "\\\\|/<>:\"?*",
"ascii" : "^0-9A-Za-z_.",
}
def __init__(self, extractor):