summaryrefslogtreecommitdiff
path: root/mailman/database/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'mailman/database/user.py')
-rw-r--r--mailman/database/user.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/mailman/database/user.py b/mailman/database/user.py
index 1e2a7085d..ec428f0a2 100644
--- a/mailman/database/user.py
+++ b/mailman/database/user.py
@@ -15,7 +15,11 @@
# You should have received a copy of the GNU General Public License along with
# GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
-from email.utils import formataddr
+__metaclass__ = type
+__all__ = [
+ 'User',
+ ]
+
from storm.locals import *
from zope.interface import implements