summaryrefslogtreecommitdiff
path: root/src/mailman/database
diff options
context:
space:
mode:
authorBarry Warsaw2017-01-04 10:30:17 -0500
committerBarry Warsaw2017-01-04 10:30:17 -0500
commit8180990a2ed053f6e4880f93a75acd9845631793 (patch)
treeee79755d82c4f1531799d9a96c1619ee7841245a /src/mailman/database
parent9ecb0d462b79bec42e82b6aecea8853262e15753 (diff)
downloadmailman-8180990a2ed053f6e4880f93a75acd9845631793.tar.gz
mailman-8180990a2ed053f6e4880f93a75acd9845631793.tar.zst
mailman-8180990a2ed053f6e4880f93a75acd9845631793.zip
Bump copyright years.
Diffstat (limited to 'src/mailman/database')
-rw-r--r--src/mailman/database/alembic/__init__.py2
-rw-r--r--src/mailman/database/alembic/env.py2
-rw-r--r--src/mailman/database/alembic/versions/33e1f5f6fa8_.py2
-rw-r--r--src/mailman/database/alembic/versions/46e92facee7_add_serverowner_domainowner.py2
-rw-r--r--src/mailman/database/alembic/versions/51b7f92bd06c_initial.py2
-rw-r--r--src/mailman/database/base.py2
-rw-r--r--src/mailman/database/factory.py2
-rw-r--r--src/mailman/database/helpers.py2
-rw-r--r--src/mailman/database/model.py2
-rw-r--r--src/mailman/database/mysql.py2
-rw-r--r--src/mailman/database/postgresql.py2
-rw-r--r--src/mailman/database/sqlite.py2
-rw-r--r--src/mailman/database/tests/test_factory.py2
-rw-r--r--src/mailman/database/tests/test_migrations.py2
-rw-r--r--src/mailman/database/transaction.py2
-rw-r--r--src/mailman/database/types.py2
16 files changed, 16 insertions, 16 deletions
diff --git a/src/mailman/database/alembic/__init__.py b/src/mailman/database/alembic/__init__.py
index ff74113d7..4979e001e 100644
--- a/src/mailman/database/alembic/__init__.py
+++ b/src/mailman/database/alembic/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2014-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2014-2017 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 e359b201d..afc0e515e 100644
--- a/src/mailman/database/alembic/env.py
+++ b/src/mailman/database/alembic/env.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2014-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2014-2017 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
diff --git a/src/mailman/database/alembic/versions/33e1f5f6fa8_.py b/src/mailman/database/alembic/versions/33e1f5f6fa8_.py
index 72754d3c5..daf4ee321 100644
--- a/src/mailman/database/alembic/versions/33e1f5f6fa8_.py
+++ b/src/mailman/database/alembic/versions/33e1f5f6fa8_.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2015-2017 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
diff --git a/src/mailman/database/alembic/versions/46e92facee7_add_serverowner_domainowner.py b/src/mailman/database/alembic/versions/46e92facee7_add_serverowner_domainowner.py
index bf734934b..22e55232a 100644
--- a/src/mailman/database/alembic/versions/46e92facee7_add_serverowner_domainowner.py
+++ b/src/mailman/database/alembic/versions/46e92facee7_add_serverowner_domainowner.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2015-2017 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 aa7ea765d..ace438347 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-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2014-2017 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 586e1b20d..ab8f59bd2 100644
--- a/src/mailman/database/base.py
+++ b/src/mailman/database/base.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2006-2017 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 4d003c39c..98a68b0ec 100644
--- a/src/mailman/database/factory.py
+++ b/src/mailman/database/factory.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2012-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2012-2017 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
diff --git a/src/mailman/database/helpers.py b/src/mailman/database/helpers.py
index 27c870058..51f67cdd7 100644
--- a/src/mailman/database/helpers.py
+++ b/src/mailman/database/helpers.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2015-2017 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 098f62d4b..17e0094de 100644
--- a/src/mailman/database/model.py
+++ b/src/mailman/database/model.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2006-2017 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
diff --git a/src/mailman/database/mysql.py b/src/mailman/database/mysql.py
index cff16e208..7c52041fa 100644
--- a/src/mailman/database/mysql.py
+++ b/src/mailman/database/mysql.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2017 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 d0c208a50..6958c10dc 100644
--- a/src/mailman/database/postgresql.py
+++ b/src/mailman/database/postgresql.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2011-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2011-2017 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 3659efaff..95b780a8b 100644
--- a/src/mailman/database/sqlite.py
+++ b/src/mailman/database/sqlite.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2011-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2011-2017 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 b0aa89fc4..a263f4782 100644
--- a/src/mailman/database/tests/test_factory.py
+++ b/src/mailman/database/tests/test_factory.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2013-2017 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
diff --git a/src/mailman/database/tests/test_migrations.py b/src/mailman/database/tests/test_migrations.py
index ee45d1a00..eae3966d7 100644
--- a/src/mailman/database/tests/test_migrations.py
+++ b/src/mailman/database/tests/test_migrations.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2015-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2015-2017 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 1b5368a39..1bde6589d 100644
--- a/src/mailman/database/transaction.py
+++ b/src/mailman/database/transaction.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2006-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2006-2017 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 b5fa0626f..db6ae2b11 100644
--- a/src/mailman/database/types.py
+++ b/src/mailman/database/types.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2007-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 2007-2017 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#