1
0
mirror of https://github.com/django/django.git synced 2025-07-04 17:59:13 +00:00

[soc2009/multidb] Corrected a typo in the get_db_prep_* migration notes. Thanks to Waldemar Kornewald for the report.

git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/multidb@11794 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor 2009-12-04 00:55:38 +00:00
parent 6bc1b7d8cd
commit 2e900d47f2

View File

@ -178,7 +178,7 @@ two extra methods have been introduced::
def get_db_prep_value(self, value, connection, prepared=False):
# ...
def get_prep_lookup(self, lookup_type, value, connection, prepared=False):
def get_db_prep_lookup(self, lookup_type, value, connection, prepared=False):
# ...
These changes are required to support multiple databases -