#21864 closed Bug (fixed)
Unclosed string in custom lookup doc example.
Reported by: | Owned by: | cbarna | |
---|---|---|---|
Component: | Documentation | Version: | |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
Line 165 of docs/ref/models/custom-lookups.txt is:
return '%s > %s AND %s < -%s % (lhs, rhs, lhs, rhs), params
and should be:
return '%s > %s AND %s < -%s' % (lhs, rhs, lhs, rhs), params
Note:
See TracTickets
for help on using tickets.
In d7ce48f175eae17897b3b3ff792998873ff1c6ec: