Skip to content

Commit 40a3b91

Browse files
committed
Fix year in copyright
1 parent 01a708f commit 40a3b91

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/source/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
# import os
2020
# import sys
2121
# sys.path.insert(0, os.path.abspath('.'))
22+
from datetime import datetime
2223

2324

2425
# -- General configuration ------------------------------------------------
@@ -55,7 +56,7 @@
5556

5657
# General information about the project.
5758
project = u'rfc3986'
58-
copyright = u'2017, Ian Stapleton Cordasco'
59+
copyright = u'{}, Ian Stapleton Cordasco'.format(datetime.now().year)
5960
author = u'Ian Stapleton Cordasco'
6061

6162
# The version info for the project you're documenting, acts as replacement for

0 commit comments

Comments
 (0)