summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-01-11 23:58:21 -0800
committerChris McDonough <chrism@plope.com>2013-01-11 23:58:21 -0800
commit7014f7cde60add848c9f2c6aa02c4b344d1a001c (patch)
tree5136196becacb9bff3c79a4c234ddab76f5d70de /docs
parent3ac960c7d1a77d89d84931c34dbed5ab57cdbe66 (diff)
parent3604e6edbf7f9aac375ca3b2a9914c5665a0cf8d (diff)
downloadpyramid-7014f7cde60add848c9f2c6aa02c4b344d1a001c.tar.gz
pyramid-7014f7cde60add848c9f2c6aa02c4b344d1a001c.tar.bz2
pyramid-7014f7cde60add848c9f2c6aa02c4b344d1a001c.zip
Merge pull request #789 from tshepang/from2008
Pyramid copyright is from 2008
Diffstat (limited to 'docs')
-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.