summaryrefslogtreecommitdiff
path: root/mailman/database/member.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-01-04 19:41:05 -0500
committerBarry Warsaw2009-01-04 19:41:05 -0500
commitf6d998b93b0dd8978eadc9abc4c3964e3fe66bf7 (patch)
treefc64f36b862ae61965e8d23fd00e56dcac1a5ee3 /mailman/database/member.py
parent706c3853103f53955068cc429c0bd6d1f8fb6dd0 (diff)
downloadmailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.tar.gz
mailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.tar.zst
mailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.zip
Diffstat (limited to 'mailman/database/member.py')
-rw-r--r--mailman/database/member.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/mailman/database/member.py b/mailman/database/member.py
index a8deb3171..66d215e4d 100644
--- a/mailman/database/member.py
+++ b/mailman/database/member.py
@@ -15,16 +15,19 @@
# You should have received a copy of the GNU General Public License along with
# GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
+__metaclass__ = type
+__all__ = [
+ 'Member',
+ ]
+
from storm.locals import *
from zope.interface import implements
-from mailman.Utils import split_listname
from mailman.config import config
from mailman.constants import SystemDefaultPreferences
from mailman.database.model import Model
from mailman.database.types import Enum
from mailman.interfaces.member import IMember
-from mailman.interfaces.preferences import IPreferences