Sergey M․
7 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
2 additions and
1 deletions
-
youtube_dl/utils.py
|
@ -473,7 +473,8 @@ def timeconvert(timestr): |
|
|
def sanitize_filename(s, restricted=False, is_id=False): |
|
|
def sanitize_filename(s, restricted=False, is_id=False): |
|
|
"""Sanitizes a string so it could be used as part of a filename. |
|
|
"""Sanitizes a string so it could be used as part of a filename. |
|
|
If restricted is set, use a stricter subset of allowed characters. |
|
|
If restricted is set, use a stricter subset of allowed characters. |
|
|
Set is_id if this is not an arbitrary string, but an ID that should be kept if possible |
|
|
|
|
|
|
|
|
Set is_id if this is not an arbitrary string, but an ID that should be kept |
|
|
|
|
|
if possible. |
|
|
""" |
|
|
""" |
|
|
def replace_insane(char): |
|
|
def replace_insane(char): |
|
|
if restricted and char in ACCENT_CHARS: |
|
|
if restricted and char in ACCENT_CHARS: |
|
|