From 700c505560b8ea34d7572b0d0b54ad6afe2b00f3 Mon Sep 17 00:00:00 2001 From: Edgars Supe Date: Thu, 9 Sep 2021 15:40:48 +0300 Subject: [PATCH] Delimit album types with '; ' --- beets/autotag/mb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/autotag/mb.py b/beets/autotag/mb.py index 0dc450d69..a70c74834 100644 --- a/beets/autotag/mb.py +++ b/beets/autotag/mb.py @@ -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)