Removed unneeded import from postgresql_psycopg2/base.py

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5973 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-08-20 01:30:11 +00:00
parent f4b397087c
commit 4f82250512
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ PostgreSQL database backend for Django.
Requires psycopg 2: http://initd.org/projects/psycopg2
"""
from django.db.backends import BaseDatabaseWrapper, util
from django.db.backends import BaseDatabaseWrapper
from django.db.backends.postgresql.operations import DatabaseOperations
try:
import psycopg2 as Database