Replace / characters in filenames

To avoid path issues, artist, album, and track names need to have any
`/` characters removed.
This commit is contained in:
2018-11-05 19:22:18 -06:00
parent e1f00d6f47
commit 82b108f121

View File

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