Skip to content

Commit

Permalink
Fixed #12426 -- Corrected typo in multi-db docs. Thanks to btbytes fo…
Browse files Browse the repository at this point in the history
…r the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11972 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Dec 24, 2009
1 parent e1f6b4b commit c8f22ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/topics/db/multi-db.txt
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ specific database. So, if you want to load an object using it's
natural key (using the ``get_by_natural_key()`` method on the manager,
you can call::

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

If you are overriding ``get_query_set()`` on your manager you must be sure to
either, call the method on the parent (using ``super()``), or do the
Expand Down

0 comments on commit c8f22ae

Please sign in to comment.