mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
Missing one boolean converter from filters after conversion
This commit is contained in:
parent
b5db74a7d9
commit
e807507203
@ -136,7 +136,7 @@ class FieldLookupBackend(BaseFilterBackend):
|
||||
def value_to_python(self, model, lookup, value):
|
||||
field, new_lookup = self.get_field_from_lookup(model, lookup)
|
||||
if new_lookup.endswith('__isnull'):
|
||||
value = self.to_python_boolean(value)
|
||||
value = to_python_boolean(value)
|
||||
elif new_lookup.endswith('__in'):
|
||||
items = []
|
||||
for item in value.split(','):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user