From 349a6e6c1dd652e291331f431cf492b5d09f5a9c Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 25 Jun 2016 18:11:15 -0700 Subject: [PATCH] Fix an erroneous six usage in fuzzy --- beetsplug/fuzzy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/fuzzy.py b/beetsplug/fuzzy.py index 1624ee1c1..ad61dc76b 100644 --- a/beetsplug/fuzzy.py +++ b/beetsplug/fuzzy.py @@ -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}