2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

Merge branch '2386-check-correct-copyright-dates-in-man-pages' into 'main'

Set copyright year to the current year

Closes #2386

See merge request isc-projects/bind9!4869
This commit is contained in:
Michal Nowak
2021-05-14 12:46:33 +00:00

View File

@@ -31,8 +31,11 @@
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = u'BIND 9' project = u'BIND 9'
# pylint: disable=wrong-import-position
import datetime
year = datetime.datetime.now().year
# pylint: disable=redefined-builtin # pylint: disable=redefined-builtin
copyright = u'2021, Internet Systems Consortium' copyright = u"%d, Internet Systems Consortium" % year
author = u'Internet Systems Consortium' author = u'Internet Systems Consortium'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------