Skip to content

Commit

Permalink
Changed type of argument on complex_filter method
Browse files Browse the repository at this point in the history
  • Loading branch information
nichoski committed Sep 2, 2022
1 parent 79a2333 commit 26c98de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hvad/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def complex_filter(self, filter_obj):
raise NotImplementedError()

newargs, newkwargs = self._translate_args_kwargs(**filter_obj)
return super(TranslationQueryset, self)._filter_or_exclude(None, *newargs, **newkwargs)
return super(TranslationQueryset, self)._filter_or_exclude(False, *newargs, **newkwargs)

def annotate(self, *args, **kwargs):
newkwargs = dict((k, self._translate_expression(v)) for k, v in kwargs.items())
Expand Down

0 comments on commit 26c98de

Please sign in to comment.