From 3604e6edbf7f9aac375ca3b2a9914c5665a0cf8d Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Sat, 12 Jan 2013 09:51:08 +0200 Subject: Pyramid copyright is from 2008 52d4fbc mistakenly removed '2008' in '2008-' --- docs/conf.py | 5 +++-- 1 file 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. -- cgit v1.2.3