Delimit album types with '; '

This commit is contained in:
Edgars Supe 2021-09-09 15:40:48 +03:00
parent 1bd53ad2aa
commit 700c505560

View file

@ -427,7 +427,7 @@ def album_info(release):
if release['release-group']['secondary-type-list']:
for sec_type in release['release-group']['secondary-type-list']:
albumtypes.append(sec_type.lower())
info.albumtypes = ','.join(albumtypes)
info.albumtypes = '; '.join(albumtypes)
# Release events.
info.country, release_date = _preferred_release_event(release)