mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
Replace '/' with '_' instead of deleting it
This commit is contained in:
@@ -80,6 +80,7 @@ def is_spotify(raw_song):
|
|||||||
def sanitize_title(title):
|
def sanitize_title(title):
|
||||||
"""Generate filename of the song to be downloaded."""
|
"""Generate filename of the song to be downloaded."""
|
||||||
title = title.replace(' ', '_')
|
title = title.replace(' ', '_')
|
||||||
|
title = title.replace('/', '_')
|
||||||
|
|
||||||
# slugify removes any special characters
|
# slugify removes any special characters
|
||||||
title = slugify(title, ok='-_()[]{}', lower=False)
|
title = slugify(title, ok='-_()[]{}', lower=False)
|
||||||
|
|||||||
Reference in New Issue
Block a user