summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql_psycopg2
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2014-04-16 16:49:37 -0400
committerTim Graham <timograham@gmail.com>2014-04-20 13:10:52 -0400
commit33d1dc2eeb5db83f07b6b7fbf3b10ef01b74702b (patch)
tree38a08d415969b7b1bf504ede56d9e6652403aa0e /django/db/backends/postgresql_psycopg2
parent9e86c3f0a62a33a541b0ccf7d86a3db87e8e8705 (diff)
[1.7.x] Fixed flake8 warnings introduced in recent commits.
Backport of 79f05616fbf48cf7c205ef17666af0c3d47b3c1e from master
Diffstat (limited to 'django/db/backends/postgresql_psycopg2')
-rw-r--r--django/db/backends/postgresql_psycopg2/base.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/db/backends/postgresql_psycopg2/base.py b/django/db/backends/postgresql_psycopg2/base.py
index c2aa486b74..cc44075ba7 100644
--- a/django/db/backends/postgresql_psycopg2/base.py
+++ b/django/db/backends/postgresql_psycopg2/base.py
@@ -4,8 +4,6 @@ PostgreSQL database backend for Django.
Requires psycopg 2: http://initd.org/projects/psycopg2
"""
-import sys
-
from django.conf import settings
from django.db.backends import (BaseDatabaseFeatures, BaseDatabaseWrapper,
BaseDatabaseValidation)