Skip to content

Commit

Permalink
Add dollar sign to clean up list (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdsampayo authored Apr 9, 2021
1 parent 5409bbf commit fca7ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spotify_dl/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ def sanitize(name, replace_with=''):
:param name: Name to be cleaned up
:return string containing the cleaned name
"""
clean_up_list = ["\\", "/", ":", "*", "?", "\"", "<", ">", "|", "\0"]
clean_up_list = ["\\", "/", ":", "*", "?", "\"", "<", ">", "|", "\0", "$"]
for x in clean_up_list:
name = name.replace(x, replace_with)
return name

0 comments on commit fca7ca7

Please sign in to comment.