Skip to content

Commit

Permalink
docs: populate current year for the colophon
Browse files Browse the repository at this point in the history
  • Loading branch information
arjun-menon committed Nov 3, 2016
1 parent 851a6e0 commit 7ede735
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,15 @@
#
# source_encoding = 'utf-8-sig'

from datetime import datetime
this_year = datetime.now().year

# The master toctree document.
master_doc = 'index'

# General information about the project.
project = u'pypage'
copyright = u'2016, Arjun G. Menon'
copyright = u'%d, Arjun G. Menon' % this_year
author = u'Arjun G. Menon'

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

0 comments on commit 7ede735

Please sign in to comment.