diff options
| author | Barry Warsaw | 2015-01-04 20:22:39 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2015-01-04 20:22:39 -0500 |
| commit | 3ed695772e7e9c17234097e820a4cedfb0ad3a5d (patch) | |
| tree | 10f88798815b92f714b9f7fb23649984c9606b50 /src/mailman/database | |
| parent | 4a612db8e89afed74173b93f3b64fa567b8417a3 (diff) | |
| download | mailman-3ed695772e7e9c17234097e820a4cedfb0ad3a5d.tar.gz mailman-3ed695772e7e9c17234097e820a4cedfb0ad3a5d.tar.zst mailman-3ed695772e7e9c17234097e820a4cedfb0ad3a5d.zip | |
Bump copyright years.
Diffstat (limited to 'src/mailman/database')
| -rw-r--r-- | src/mailman/database/alembic/__init__.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/alembic/env.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/alembic/versions/51b7f92bd06c_initial.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/base.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/factory.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/model.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/postgresql.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/sqlite.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/tests/test_factory.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/transaction.py | 2 | ||||
| -rw-r--r-- | src/mailman/database/types.py | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/src/mailman/database/alembic/__init__.py b/src/mailman/database/alembic/__init__.py index 4dbbc31d9..b861ed649 100644 --- a/src/mailman/database/alembic/__init__.py +++ b/src/mailman/database/alembic/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014 by the Free Software Foundation, Inc. +# Copyright (C) 2014-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/alembic/env.py b/src/mailman/database/alembic/env.py index 261782d29..5fb9ac138 100644 --- a/src/mailman/database/alembic/env.py +++ b/src/mailman/database/alembic/env.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014 by the Free Software Foundation, Inc. +# Copyright (C) 2014-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/alembic/versions/51b7f92bd06c_initial.py b/src/mailman/database/alembic/versions/51b7f92bd06c_initial.py index 5e3527abe..763554b67 100644 --- a/src/mailman/database/alembic/versions/51b7f92bd06c_initial.py +++ b/src/mailman/database/alembic/versions/51b7f92bd06c_initial.py @@ -1,4 +1,4 @@ -# Copyright (C) 2014 by the Free Software Foundation, Inc. +# Copyright (C) 2014-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/base.py b/src/mailman/database/base.py index 09fd47b80..73cc2f6f0 100644 --- a/src/mailman/database/base.py +++ b/src/mailman/database/base.py @@ -1,4 +1,4 @@ -# Copyright (C) 2006-2014 by the Free Software Foundation, Inc. +# Copyright (C) 2006-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/factory.py b/src/mailman/database/factory.py index 9fffd4545..7222ba395 100644 --- a/src/mailman/database/factory.py +++ b/src/mailman/database/factory.py @@ -1,4 +1,4 @@ -# Copyright (C) 2012-2014 by the Free Software Foundation, Inc. +# Copyright (C) 2012-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/model.py b/src/mailman/database/model.py index 8dad6f0cf..f81e591fc 100644 --- a/src/mailman/database/model.py +++ b/src/mailman/database/model.py @@ -1,4 +1,4 @@ -# Copyright (C) 2006-2014 by the Free Software Foundation, Inc. +# Copyright (C) 2006-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/postgresql.py b/src/mailman/database/postgresql.py index 4a6f02da6..9877f110d 100644 --- a/src/mailman/database/postgresql.py +++ b/src/mailman/database/postgresql.py @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2014 by the Free Software Foundation, Inc. +# Copyright (C) 2011-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/sqlite.py b/src/mailman/database/sqlite.py index 95dba460e..e6c9857b2 100644 --- a/src/mailman/database/sqlite.py +++ b/src/mailman/database/sqlite.py @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2014 by the Free Software Foundation, Inc. +# Copyright (C) 2011-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/tests/test_factory.py b/src/mailman/database/tests/test_factory.py index 71f810a56..6a16c74ab 100644 --- a/src/mailman/database/tests/test_factory.py +++ b/src/mailman/database/tests/test_factory.py @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2014 by the Free Software Foundation, Inc. +# Copyright (C) 2013-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/transaction.py b/src/mailman/database/transaction.py index dc468aaab..30710017e 100644 --- a/src/mailman/database/transaction.py +++ b/src/mailman/database/transaction.py @@ -1,4 +1,4 @@ -# Copyright (C) 2006-2014 by the Free Software Foundation, Inc. +# Copyright (C) 2006-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # diff --git a/src/mailman/database/types.py b/src/mailman/database/types.py index 463d271f0..f6350f3b9 100644 --- a/src/mailman/database/types.py +++ b/src/mailman/database/types.py @@ -1,4 +1,4 @@ -# Copyright (C) 2007-2014 by the Free Software Foundation, Inc. +# Copyright (C) 2007-2015 by the Free Software Foundation, Inc. # # This file is part of GNU Mailman. # |
