Author: ubernostrum
Date: 2008-08-23 00:04:59 -0500 (Sat, 23 Aug 2008)
New Revision: 8478
Modified:
django/trunk/docs/db-api.txt
Log:
Fixed #8388: Corrected documentation for SortedDict use in extra()
Modified: django/trunk/docs/db-api.txt
===================================================================
--- django/trunk/docs/db-api.txt 2008-08-23 04:59:25 UTC (rev 8477)
+++ django/trunk/docs/db-api.txt 2008-08-23 05:04:59 UTC (rev 8478)
@@ -1011,7 +1011,7 @@
This will work, for example::
Blog.objects.extra(
- select=SortedDict(('a', '%s'), ('b', '%s')),
+ select=SortedDict([('a', '%s'), ('b', '%s')]),
select_params=('one', 'two'))
The only thing to be careful about when using select parameters in
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---