Commit 824bfab7 by Bill DeRusha

Dynamic copyright year for docs

parent 0fe4377a
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
# All configuration values have a default; values that are commented out # All configuration values have a default; values that are commented out
# serve to show the default. # serve to show the default.
import datetime
import os import os
import sys import sys
...@@ -58,7 +59,7 @@ master_doc = 'index' ...@@ -58,7 +59,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Course Discovery Service' 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 # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |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