Opened 14 years ago

Closed 14 years ago

#12426 closed (fixed)

Syntax error in Django Multi-db documentation page

Reported by: btbytes Owned by: nobody
Component: Documentation Version: 1.1
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Book.objects.db_mamanger("other").get_by_natural_key(...)

should read

Book.objects.db_mananger("other").get_by_natural_key(...)

Change History (2)

comment:1 by btbytes, 14 years ago

gah! there is a typo in my 'fix'..

The correct line is:

Book.objects.db_manager("other").get_by_natural_key(...)

comment:2 by Russell Keith-Magee, 14 years ago

Resolution: fixed
Status: newclosed

(In [11972]) Fixed #12426 -- Corrected typo in multi-db docs. Thanks to btbytes for the report.

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