diff options
| author | Abhilash Raj | 2014-09-23 15:28:07 +0530 |
|---|---|---|
| committer | Abhilash Raj | 2014-09-23 15:28:07 +0530 |
| commit | 20b41091f37bbf61c646c2e1586b73269304da2c (patch) | |
| tree | 8d83bf82f4949025109f639b83ba86aefe8ec576 /src/mailman/model/uid.py | |
| parent | fa030f90a6e3eb1b2c472922e42fe929f016019f (diff) | |
| parent | 31aebefadf7853a4e7767ea1552720f52e06bb7a (diff) | |
| download | mailman-20b41091f37bbf61c646c2e1586b73269304da2c.tar.gz mailman-20b41091f37bbf61c646c2e1586b73269304da2c.tar.zst mailman-20b41091f37bbf61c646c2e1586b73269304da2c.zip | |
merge updates from to sqlalchemy branch
Diffstat (limited to 'src/mailman/model/uid.py')
| -rw-r--r-- | src/mailman/model/uid.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mailman/model/uid.py b/src/mailman/model/uid.py index 77f1b59bb..29d8e7021 100644 --- a/src/mailman/model/uid.py +++ b/src/mailman/model/uid.py @@ -29,8 +29,8 @@ __all__ = [ from sqlalchemy import Column, Integer from mailman.database.model import Model -from mailman.database.types import UUID from mailman.database.transaction import dbconnection +from mailman.database.types import UUID @@ -54,6 +54,7 @@ class UID(Model): @dbconnection def __init__(self, store, uid): + super(UID, self).__init__() self.uid = uid store.add(self) |
