diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-08-20 01:30:11 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-08-20 01:30:11 +0000 |
| commit | 4f8225051246fb4c1560bbba77a4ead18bc22828 (patch) | |
| tree | 6c271169c53904df63f5a9d66624c675b376be16 | |
| parent | f4b397087cd0261ce1f8c35c2014e1121f5f0f5f (diff) | |
Removed unneeded import from postgresql_psycopg2/base.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5973 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/backends/postgresql_psycopg2/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql_psycopg2/base.py b/django/db/backends/postgresql_psycopg2/base.py index 4928dcb16e..87b41877a6 100644 --- a/django/db/backends/postgresql_psycopg2/base.py +++ b/django/db/backends/postgresql_psycopg2/base.py @@ -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 |
