Make the copyright year dynamic for the documentation
This commit is contained in:
parent
abf9c4117d
commit
6f2bb31068
1 changed files with 2 additions and 1 deletions
|
|
@ -11,6 +11,7 @@
|
|||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
import time
|
||||
from functools import partial
|
||||
|
||||
from docutils import nodes
|
||||
|
|
@ -32,7 +33,7 @@
|
|||
# -- Project information -----------------------------------------------------
|
||||
|
||||
project = 'kitty'
|
||||
copyright = '2018, Kovid Goyal'
|
||||
copyright = time.strftime('%Y, Kovid Goyal')
|
||||
author = 'Kovid Goyal'
|
||||
building_man_pages = 'man' in sys.argv
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue