From ab1a442a01eb3ee1ca210cd689c9b578d31d7366 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Mon, 11 Aug 2008 15:54:42 +0000 Subject: [PATCH] Fixed stupid syntax error in [8303]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8305 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index 68927de182..f25a65bafb 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -6,7 +6,7 @@ except ImportError: from django.utils._threading_local import local try: set -except NameError +except NameError: # Python 2.3 compat from sets import Set as set