Opened 10 years ago

Closed 10 years ago

Last modified 10 years ago

#21864 closed Bug (fixed)

Unclosed string in custom lookup doc example.

Reported by: Chris Barna <cbarna@…> 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

Change History (3)

comment:1 by Baptiste Mispelon <bmispelon@…>, 10 years ago

Resolution: fixed
Status: newclosed

In d7ce48f175eae17897b3b3ff792998873ff1c6ec:

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

Thanks to Chris Barna for the report.

comment:2 by Chris Barna <chris@…>, 10 years ago

In 7d9014864ca7a829ca590e0839671a9ef5a226d0:

Fixes #21864: Close string in example of custom lookups doc page.

comment:3 by Alex Gaynor <alex.gaynor@…>, 10 years ago

In d01edbcddac0e533135f2263ce2d6c1df18dc61e:

Merge pull request #2205 from ctbarna/21864-custom-lookup-unclosed-string

Fixes #21864: Close string in example of custom lookups doc page.

Note: See TracTickets for help on using tickets.
Back to Top