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/version.py | |
| parent | 706c3853103f53955068cc429c0bd6d1f8fb6dd0 (diff) | |
| download | mailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.tar.gz mailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.tar.zst mailman-f6d998b93b0dd8978eadc9abc4c3964e3fe66bf7.zip | |
Diffstat (limited to 'mailman/database/version.py')
| -rw-r--r-- | mailman/database/version.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mailman/database/version.py b/mailman/database/version.py index 83e50b821..519c5438c 100644 --- a/mailman/database/version.py +++ b/mailman/database/version.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__ = [ + 'Version', + ] + from storm.locals import * from mailman.database.model import Model @@ -26,5 +31,6 @@ class Version(Model): version = Int() def __init__(self, component, version): + super(Version, self).__init__() self.component = component self.version = version |
