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

Corrected some typos from r14673.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15712 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 93cd8442
......@@ -665,7 +665,7 @@ class ModelAdmin(BaseModelAdmin):
"""
obj.save()
def delete_model(self, requet, obj):
def delete_model(self, request, obj):
"""
Given a model instance delete it from the database.
"""
......
......@@ -469,7 +469,7 @@ multiple-database support::
# Tell Django to save objects to the 'other' database.
obj.save(using=self.using)
def delete_model(self, requqest, obj):
def delete_model(self, request, obj):
# Tell Django to delete objects from the 'other' database
obj.delete(using=self.using)
......
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