Skip to content

Commit aa217d6

Browse files
committed
Remove artist from playlist save format
Shenanigans from artists can result in really long artist names. I don't think I've seen that with album names. If things change then I may have to rethink this later.
1 parent 8880364 commit aa217d6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

zotify/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@
7575
TEMP_DOWNLOAD_DIR: { 'default': '', 'type': str, 'arg': '--temp-download-dir' }
7676
}
7777

78-
OUTPUT_DEFAULT_PLAYLIST_EXT = '{artist}/{album}.{album_id}/{song_name}.{ext}'
78+
OUTPUT_DEFAULT_PLAYLIST_EXT = '{album}.{album_id}/{song_name}.{ext}'
7979
OUTPUT_DEFAULT_LIKED_SONGS = 'Liked Songs/{song_name}.{ext}'
8080
OUTPUT_DEFAULT_SINGLE = '{artist}/{album}.{album_id}/{song_name}.{ext}'
8181
OUTPUT_DEFAULT_ALBUM = '{artist}/{album}.{album_id}/{song_name}.{ext}'
82-
OUTPUT_DEFAULT_PLAYLIST = '{artist}/{album}.{album_id}/{song_name}.{ext}'
82+
OUTPUT_DEFAULT_PLAYLIST = '{album}.{album_id}/{song_name}.{ext}'
8383

8484
class Config:
8585
Values = {}

0 commit comments

Comments
 (0)