diff options
| author | Barry Warsaw | 2009-01-04 19:41:05 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-01-04 19:41:05 -0500 |
| commit | f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7 (patch) | |
| tree | fc64f36b862ae61965e8d23fd00e56dcac1a5ee3 /mailman/database/message.py | |
| parent | 706c3853103f53955068cc429c0bd6d1f8fb6dd0 (diff) | |
| download | mailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.tar.gz mailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.tar.zst mailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.zip | |
Diffstat (limited to 'mailman/database/message.py')
| -rw-r--r-- | mailman/database/message.py | 6 |
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 |
