1
0
mirror of https://github.com/django/django.git synced 2024-12-26 02:56:25 +00:00

Fixed stupid syntax error in [8303].

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8305 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2008-08-11 15:54:42 +00:00
parent c17c8ddecc
commit ab1a442a01

View File

@ -6,7 +6,7 @@ except ImportError:
from django.utils._threading_local import local from django.utils._threading_local import local
try: try:
set set
except NameError except NameError:
# Python 2.3 compat # Python 2.3 compat
from sets import Set as set from sets import Set as set