mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Merge pull request #1181 from marcaddeo/fix-ftintitle-duplicate-album-artist
Fix handling of duplicate album artists in ftintitle
This commit is contained in:
commit
d0dcc74c7e
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ def ft_in_title(item, drop_feat, loglevel=logging.DEBUG):
|
|||
|
||||
# Look for the album artist in the artist field. If it's not
|
||||
# present, give up.
|
||||
albumartist_split = artist.split(albumartist)
|
||||
albumartist_split = artist.split(albumartist, 1)
|
||||
if len(albumartist_split) <= 1:
|
||||
log.log(loglevel, 'album artist not present in artist')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue