diff options
| author | Christian Metts <xian@mintchaos.com> | 2013-06-19 17:45:28 -0600 |
|---|---|---|
| committer | Christian Metts <xian@mintchaos.com> | 2013-06-19 17:45:28 -0600 |
| commit | c4a0c91459185a1c78bb75bdf32e42943da09a7d (patch) | |
| tree | 65301ae0627dffc824acb703305270067bc6bcef | |
| parent | 7462a78c1bdef2f37ea9aae5ad05170dbd14b34a (diff) | |
Itty bitty typo fix.
"deletes" was missing it's last e.
| -rw-r--r-- | django/contrib/admin/actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/actions.py b/django/contrib/admin/actions.py index a56c6a6168..a4c5828f37 100644 --- a/django/contrib/admin/actions.py +++ b/django/contrib/admin/actions.py @@ -19,7 +19,7 @@ def delete_selected(modeladmin, request, queryset): deleteable objects, or, if the user has no permission one of the related childs (foreignkeys), a "permission denied" message. - Next, it delets all selected objects and redirects back to the change list. + Next, it deletes all selected objects and redirects back to the change list. """ opts = modeladmin.model._meta app_label = opts.app_label |
