diff options
| author | Barry Warsaw | 2016-03-24 21:49:37 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-03-24 21:49:37 -0400 |
| commit | e1876e6f699ab4b212d689786297f6f1e70c1551 (patch) | |
| tree | 6f3b96a233602451cc6eaf450032a56a3344c85c /src/mailman/database/base.py | |
| parent | 5404f98d90410d69a744d9c0fb71a8a31f3a4a88 (diff) | |
| download | mailman-e1876e6f699ab4b212d689786297f6f1e70c1551.tar.gz mailman-e1876e6f699ab4b212d689786297f6f1e70c1551.tar.zst mailman-e1876e6f699ab4b212d689786297f6f1e70c1551.zip | |
Diffstat (limited to 'src/mailman/database/base.py')
| -rw-r--r-- | src/mailman/database/base.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/database/base.py b/src/mailman/database/base.py index 2acc4d897..5cc582e56 100644 --- a/src/mailman/database/base.py +++ b/src/mailman/database/base.py @@ -17,13 +17,9 @@ """Common database support.""" -__all__ = [ - 'SABaseDatabase', - ] - - import logging +from mailman import public from mailman.config import config from mailman.interfaces.database import IDatabase from mailman.utilities.string import expand @@ -35,7 +31,7 @@ from zope.interface import implementer log = logging.getLogger('mailman.database') - +@public @implementer(IDatabase) class SABaseDatabase: """The database base class for use with SQLAlchemy. |
