Fixed #10997: fixed a Python 2.4-ism in admin actions.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10705 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2009-05-08 09:57:47 +00:00
parent 60cfd45107
commit eaf8ec54d2
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,10 @@ from django.utils.html import escape
from django.utils.safestring import mark_safe
from django.utils.text import capfirst
from django.utils.translation import ugettext_lazy, ugettext as _
try:
set
except NameError:
from sets import Set as set # Python 2.3 fallback
def delete_selected(modeladmin, request, queryset):
"""