changed default instalation path

This commit is contained in:
Hellow2
2023-04-04 10:43:52 +02:00
parent a48ee21a9c
commit f6803e4c73
2 changed files with 10 additions and 3 deletions

View File

@@ -73,8 +73,9 @@ available variables:
- artist
- album
- song
- album_type
"""
DOWNLOAD_PATH = "{genre}/{artist}/{album}"
DOWNLOAD_PATH = "{genre}/{artist}/{album_type}/{album}"
DOWNLOAD_FILE = "{song}.mp3"
DEFAULT_VALUES = {
"genre": "Various Genre",
@@ -82,4 +83,5 @@ DEFAULT_VALUES = {
"artist": "Various Artists",
"album": "Various Album",
"song": "Various Song",
"album_type": "Other"
}