diff options
Diffstat (limited to 'sphinx/config.py')
-rw-r--r-- | sphinx/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/config.py b/sphinx/config.py index 8517fb4e4..645b09272 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -98,7 +98,8 @@ class Config: # general options 'project': ('Python', 'env', []), 'author': ('unknown', 'env', []), - 'copyright': ('', 'html', []), + 'project_copyright': ('', 'html', [str]), + 'copyright': (lambda c: c.project_copyright, 'html', [str]), 'version': ('', 'env', []), 'release': ('', 'env', []), 'today': ('', 'env', []), |