Opened 18 years ago
Closed 18 years ago
#4532 closed (fixed)
Simply 2 letter typo on select-related example
Description ¶
http://www.djangoproject.com/documentation/db-api/#select-related
sv = Book.objects.get(id=4) # No select_related() in this example.
should be:
b = Book.objects.get(id=4) # No select_related() in this example.
Note:
See TracTickets
for help on using tickets.
(In [5466]) Fixed #4532 -- Trivial typo fix. Noticed by philliptemple@….