Skip to content

Commit

Permalink
Merge pull request #5585 from mikeSimonson/cpr-year
Browse files Browse the repository at this point in the history
Replacing the hardcoded year with a function call
  • Loading branch information
Ocramius committed Jan 4, 2016
2 parents b792e95 + 50d7ed9 commit 7f16e5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/en/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys, os
import sys, os, datetime

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand All @@ -38,7 +38,7 @@

# General information about the project.
project = u'Doctrine 2 ORM'
copyright = u'2010-12, Doctrine Project Team'
copyright = u'2010-%y, Doctrine Project Team'.format(datetime.date.today)

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down

0 comments on commit 7f16e5b

Please sign in to comment.