Commit 53b03a12 by Bill DeRusha Committed by GitHub

Merge pull request #278 from edx/bderusha/docs-copyright

Dynamic copyright year for docs
parents 0fe4377a 824bfab7
......@@ -11,6 +11,7 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
import datetime
import os
import sys
......@@ -58,7 +59,7 @@ master_doc = 'index'
# General information about the project.
project = u'Course Discovery Service'
copyright = u'2015, edX'
copyright = u'2015-{year}, edX Inc.'.format(year=datetime.date.today().year)
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment