Replace / characters in filenames

To avoid path issues, artist, album, and track names need to have any
`/` characters removed.
master
Dustin 2018-11-05 19:22:18 -06:00
parent e1f00d6f47
commit 82b108f121
1 changed files with 1 additions and 0 deletions

View File

@ -47,6 +47,7 @@ RELEASE_INFO_TMPL = '{artist} - {title} ({year}): {more_info}'
FILENAME_SAFE_MAP = {
'': "'",
':': ' - ',
'/': '-',
}