Author: adrian Date: 2008-09-06 11:49:31 -0500 (Sat, 06 Sep 2008) New Revision: 8973
Modified: django/trunk/docs/ref/contrib/contenttypes.txt Log: Fixed #8909 -- Fixed typo in contenttypes docs. Thanks, arien Modified: django/trunk/docs/ref/contrib/contenttypes.txt =================================================================== --- django/trunk/docs/ref/contrib/contenttypes.txt 2008-09-06 00:09:17 UTC (rev 8972) +++ django/trunk/docs/ref/contrib/contenttypes.txt 2008-09-06 16:49:31 UTC (rev 8973) @@ -305,7 +305,7 @@ If you don't add the reverse relationship, you can do the lookup manually:: - >>> b = Bookmark.objects.get(url='http://www.djangoproject.com/) + >>> b = Bookmark.objects.get(url='http://www.djangoproject.com/') >>> bookmark_type = ContentType.objects.get_for_model(b) >>> TaggedItem.objects.filter(content_type__pk=bookmark_type.id, ... object_id=b.id) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
