mirror of
https://github.com/beetbox/beets.git
synced 2025-12-12 03:24:44 +01:00
Genre separator from config must be unicode string
This commit is contained in:
parent
3348c0e3c2
commit
81b74151ca
1 changed files with 1 additions and 1 deletions
|
|
@ -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)]
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue