diff --git a/beetsplug/lastgenre/__init__.py b/beetsplug/lastgenre/__init__.py index 4f78f20c9..c398bf7e3 100644 --- a/beetsplug/lastgenre/__init__.py +++ b/beetsplug/lastgenre/__init__.py @@ -114,7 +114,7 @@ def _strings_to_genre(tags): tags = out tags = [t.title() for t in tags] - return config['lastgenre']['separator'].get().join( + return config['lastgenre']['separator'].get(unicode).join( tags[:config['lastgenre']['count'].get(int)] )