mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 14:02:05 -04: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:
commit
089bfe20f9
1 changed files with 4 additions and 1 deletions
|
|
@ -31,8 +31,11 @@
|
|||
# -- 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 ---------------------------------------------------
|
||||
|
|
|
|||
Loading…
Reference in a new issue