From ed44982f7590393e06ea63cb62f153ce19c5d73f Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 15 Oct 2013 10:03:15 -0700 Subject: [PATCH] ftintitle: skip on empty albumartist (#418) --- beetsplug/ftintitle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/ftintitle.py b/beetsplug/ftintitle.py index af716a9da..e9aae1ed1 100644 --- a/beetsplug/ftintitle.py +++ b/beetsplug/ftintitle.py @@ -78,7 +78,7 @@ def ft_in_title(item): # artist field does not exactly match the album artist field. In # that case, we attempt to move the featured artist to the title. _, featured = split_on_feat(artist) - if featured and albumartist != artist: + if featured and albumartist != artist and albumartist: ui.print_(displayable_path(item.path)) feat_part = None