summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2013-01-12 09:51:08 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2013-01-12 09:51:08 +0200
commit3604e6edbf7f9aac375ca3b2a9914c5665a0cf8d (patch)
tree5136196becacb9bff3c79a4c234ddab76f5d70de /docs/conf.py
parent3ac960c7d1a77d89d84931c34dbed5ab57cdbe66 (diff)
downloadpyramid-3604e6edbf7f9aac375ca3b2a9914c5665a0cf8d.tar.gz
pyramid-3604e6edbf7f9aac375ca3b2a9914c5665a0cf8d.tar.bz2
pyramid-3604e6edbf7f9aac375ca3b2a9914c5665a0cf8d.zip
Pyramid copyright is from 2008
52d4fbc mistakenly removed '2008' in '2008-<current year>'
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 048b7ce78..6eb76af9d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -76,7 +76,8 @@ master_doc = 'index'
# General substitutions.
project = 'The Pyramid Web Application Development Framework'
-copyright = '%s, Agendaless Consulting' % datetime.datetime.now().year
+thisyear = datetime.datetime.now().year
+copyright = '2008-%s, Agendaless Consulting' % thisyear
# The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
@@ -484,7 +485,7 @@ epub_title = 'The Pyramid Web Application Development Framework, Version %s' \
% release
epub_author = 'Chris McDonough'
epub_publisher = 'Agendaless Consulting'
-epub_copyright = '2008-%d' % datetime.datetime.now().year
+epub_copyright = '2008-%d' % thisyear
# The language of the text. It defaults to the language option
# or en if the language is not set.