summaryrefslogtreecommitdiff
path: root/mailman/database/message.py
diff options
context:
space:
mode:
Diffstat (limited to 'mailman/database/message.py')
-rw-r--r--mailman/database/message.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/mailman/database/message.py b/mailman/database/message.py
index f74de3c55..c7ec6bcf6 100644
--- a/mailman/database/message.py
+++ b/mailman/database/message.py
@@ -15,6 +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/>.
+__metaclass__ = type
+__all__ = [
+ 'Message',
+ ]
+
from storm.locals import *
from zope.interface import implements
@@ -36,6 +41,7 @@ class Message(Model):
# This is a Messge-ID field representation, not a database row id.
def __init__(self, message_id, message_id_hash, path):
+ super(Message, self).__init__()
self.message_id = message_id
self.message_id_hash = message_id_hash
self.path = path