Fixed #21864 -- Fixed missing quote in custom lookup example.

Thanks to Chris Barna for the report.
This commit is contained in:
Baptiste Mispelon 2014-01-23 16:13:20 +01:00
parent 12303ab738
commit d7ce48f175
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ The implementation is::
lhs, lhs_params = qn.compile(self.lhs.lhs)
rhs, rhs_params = self.process_rhs(qn, connection)
params = lhs_params + rhs_params + lhs_params + rhs_params
return '%s > %s AND %s < -%s % (lhs, rhs, lhs, rhs), params
return '%s > %s AND %s < -%s' % (lhs, rhs, lhs, rhs), params
AbsoluteValue.register_lookup(AbsoluteValueLessThan)