From d345b89bc67b67867a4cc9608a972b7ffa6e0903 Mon Sep 17 00:00:00 2001 From: Jason Pellerin Date: Fri, 21 Jul 2006 22:05:38 +0000 Subject: [PATCH] [multi-db] Removed unneed import. git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@3419 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/django/db/__init__.py b/django/db/__init__.py index d2d30628b0..e866dab81d 100644 --- a/django/db/__init__.py +++ b/django/db/__init__.py @@ -3,8 +3,6 @@ from django.core import signals from django.core.exceptions import ImproperlyConfigured from django.dispatch import dispatcher -from thread import get_ident - try: # Only exists in Python 2.4+ from threading import local