diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2008-08-11 15:54:42 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2008-08-11 15:54:42 +0000 |
| commit | ab1a442a01eb3ee1ca210cd689c9b578d31d7366 (patch) | |
| tree | 48f94932506e06fd93fa3679ff38ce0d663afbb4 | |
| parent | c17c8ddecc5902e3069ab5fc607933463debc538 (diff) | |
Fixed stupid syntax error in [8303].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8305 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/backends/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
