summaryrefslogtreecommitdiff
path: root/src/mailman/database/postgresql.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/database/postgresql.py')
-rw-r--r--src/mailman/database/postgresql.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mailman/database/postgresql.py b/src/mailman/database/postgresql.py
index 879594459..6362f999c 100644
--- a/src/mailman/database/postgresql.py
+++ b/src/mailman/database/postgresql.py
@@ -25,8 +25,6 @@ __all__ = [
]
-import psycopg2
-
from operator import attrgetter
from urlparse import urlsplit, urlunsplit
@@ -51,7 +49,6 @@ class PostgreSQLDatabase(StormBaseDatabase):
"""Database class for PostgreSQL."""
TAG = 'postgres'
- Error = psycopg2.ProgrammingError
def _database_exists(self, store):
"""See `BaseDatabase`."""