summaryrefslogtreecommitdiff
path: root/src/mailman/database/postgresql.py
diff options
context:
space:
mode:
authorBarry Warsaw2012-07-25 12:32:04 -0400
committerBarry Warsaw2012-07-25 12:32:04 -0400
commit762a4cc0838618e549e0562df96cad361f8cde5a (patch)
tree2f1a414402bdf655f92c704e4ecc4286e8561034 /src/mailman/database/postgresql.py
parent9ef8a1268f1b2902ad46852937dd7bc977c5b2b1 (diff)
downloadmailman-762a4cc0838618e549e0562df96cad361f8cde5a.tar.gz
mailman-762a4cc0838618e549e0562df96cad361f8cde5a.tar.zst
mailman-762a4cc0838618e549e0562df96cad361f8cde5a.zip
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`."""