mirror of
https://github.com/beetbox/beets.git
synced 2026-02-14 03:17:59 +01:00
Delimit album types with '; '
This commit is contained in:
parent
1bd53ad2aa
commit
700c505560
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue