Skip to content

Commit 0c01b3e

Browse files
committed
add current year at footer
add current year at footer
1 parent 5216e65 commit 0c01b3e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

conf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import sys
99
import os
10+
from datetime import date
1011

1112
#sys.path.append(os.path.abspath('_ext/phpdomain'))
1213
#sys.path.append(os.path.abspath('_ext/tk.phpautodoc/src'))
@@ -23,7 +24,7 @@
2324
source_suffix = '.rst'
2425
master_doc = 'index'
2526
project = u'MetaModels'
26-
copyright = u'2015, Team MetaModels'
27+
copyright = u'{:d}, Team MetaModels'.format(date.today().year)
2728
version = '2.0'
2829
release = '2.0.0'
2930
language = 'en'

0 commit comments

Comments
 (0)