From 82b108f1216f2f822b70e51113f02e63691c4cd9 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 5 Nov 2018 19:22:18 -0600 Subject: [PATCH] Replace / characters in filenames To avoid path issues, artist, album, and track names need to have any `/` characters removed. --- ripcd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ripcd.py b/ripcd.py index 0946838..b43fd4e 100755 --- a/ripcd.py +++ b/ripcd.py @@ -47,6 +47,7 @@ RELEASE_INFO_TMPL = '{artist} - {title} ({year}): {more_info}' FILENAME_SAFE_MAP = { '’': "'", ':': ' - ', + '/': '-', }