mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
Fix an erroneous six usage in fuzzy
This commit is contained in:
parent
736ad66518
commit
349a6e6c1d
1 changed files with 1 additions and 1 deletions
|
|
@ -45,5 +45,5 @@ class FuzzyPlugin(BeetsPlugin):
|
|||
})
|
||||
|
||||
def queries(self):
|
||||
prefix = self.config['prefix'].get(six.string_types)
|
||||
prefix = self.config['prefix'].get(six.text_type)
|
||||
return {prefix: FuzzyQuery}
|
||||
|
|
|
|||
Loading…
Reference in a new issue