mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
fix param odrder for match function of PluginQuery
This commit is contained in:
parent
7bc0b3a518
commit
c9c57cbb29
1 changed files with 1 additions and 1 deletions
|
|
@ -522,7 +522,7 @@ class PluginQuery(FieldQuery):
|
|||
self.name = None
|
||||
|
||||
def clause(self):
|
||||
clause = "{name}({field}, ?)".format(name=self.name, field=self.field)
|
||||
clause = "{name}(?, {field})".format(name=self.name, field=self.field)
|
||||
return clause, [self.pattern]
|
||||
|
||||
class BooleanQuery(MatchQuery):
|
||||
|
|
|
|||
Loading…
Reference in a new issue