Kaydet (Commit) ebb8ca1c authored tarafından Russell Keith-Magee's avatar Russell Keith-Magee

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
üst f96f6305
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment