Commit 68469536 authored by lifei's avatar lifei

fix: bad call `super` in BaseSQLAFilter

parent 2f14840c
......@@ -29,7 +29,7 @@ class BaseSQLAFilter(filters.BaseFilter):
return self.column if alias is None else getattr(alias, self.column.key)
def apply(self, query, value, alias=None):
return super(self, BaseSQLAFilter).apply(query, value)
return super(BaseSQLAFilter, self).apply(query, value)
# Common filters
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment