diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-12-24 03:21:13 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-12-24 03:21:13 +0000 |
| commit | c8f22aef237b800b73c1d4ff31bdd95feaa496eb (patch) | |
| tree | 25c84f6c5edeb0e96c52022c9b1efe8becee7e07 | |
| parent | e1f6b4b82ffbd44e3010d52a83a151e6f1decbfe (diff) | |
Fixed #12426 -- Corrected typo in multi-db docs. Thanks to btbytes for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11972 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/topics/db/multi-db.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/multi-db.txt b/docs/topics/db/multi-db.txt index 8c42613ebb..6ecb8ad6e0 100644 --- a/docs/topics/db/multi-db.txt +++ b/docs/topics/db/multi-db.txt @@ -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 |
