To ensure that a release with outdated copyright year is not produced at
the beginning of a year, set copyright year to the current year.
# -- Project information -----------------------------------------------------
project = u'BIND 9'
+# pylint: disable=wrong-import-position
+import datetime
+year = datetime.datetime.now().year
# pylint: disable=redefined-builtin
-copyright = u'2021, Internet Systems Consortium'
+copyright = u"%d, Internet Systems Consortium" % year
author = u'Internet Systems Consortium'
# -- General configuration ---------------------------------------------------