Pārlūkot izejas kodu

Corrected an example in the natural key serialization docs. Thanks to Alex Gaynor for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11907 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Russell Keith-Magee 15 gadi atpakaļ
vecāks
revīzija
ebb8ca1cd7
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      docs/topics/serialization.txt

+ 1 - 1
docs/topics/serialization.txt

@@ -264,7 +264,7 @@ name::
 
     class PersonManager(models.Manager):
         def get_by_natural_key(self, first_name, last_name):
-            return self.filter(first_name=first_name, last_name=last_name)
+            return self.get(first_name=first_name, last_name=last_name)
 
     class Person(models.Model):
         objects = PersonManager()