mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
add "ascii" as a special 'path-restrict' value
This commit is contained in:
parent
5818c928c4
commit
5d4494b15f
@ -154,6 +154,7 @@ Description
|
||||
depending on the local operating system
|
||||
* ``"unix"``: ``"/"``
|
||||
* ``"windows"``: ``"\\\\|/<>:\"?*"``
|
||||
* ``"ascii"``: ``"^0-9A-Za-z_."``
|
||||
|
||||
Note: In a string with 2 or more characters, ``[]^-\`` need to be
|
||||
escaped with backslashes, e.g. ``"\\[\\]"``
|
||||
|
@ -730,6 +730,7 @@ class PathFormat():
|
||||
"auto" : "\\\\|/<>:\"?*" if WINDOWS else "/",
|
||||
"unix" : "/",
|
||||
"windows": "\\\\|/<>:\"?*",
|
||||
"ascii" : "^0-9A-Za-z_.",
|
||||
}
|
||||
|
||||
def __init__(self, extractor):
|
||||
|
Loading…
Reference in New Issue
Block a user