diff options
author | Georg Brandl <georg@python.org> | 2009-04-09 19:04:44 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-09 19:04:44 +0000 |
commit | b349660d955e7c2aeb8eda4db35d93ff667e4a4c (patch) | |
tree | cebaa5e525b9ce7ec7180fec2a7e11f15dccfb11 /sphinx/builders/changes.py | |
parent | 332f71c0c3da7e813513237f300c81ddeae5b60e (diff) | |
download | sphinx-git-b349660d955e7c2aeb8eda4db35d93ff667e4a4c.tar.gz |
Add html_show_copyright config val, patch by Wojtek Walczak.
Diffstat (limited to 'sphinx/builders/changes.py')
-rw-r--r-- | sphinx/builders/changes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index e07b06d88..ad0b8d195 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -94,6 +94,7 @@ class ChangesBuilder(Builder): 'libchanges': sorted(libchanges.iteritems()), 'apichanges': sorted(apichanges), 'otherchanges': sorted(otherchanges.iteritems()), + 'show_copyright': self.config.html_show_copyright, 'show_sphinx': self.config.html_show_sphinx, } f = codecs.open(path.join(self.outdir, 'index.html'), 'w', 'utf8') |