#2364: Fix KeyError rootSymbol on Sphinx upgrade from older version.

This commit is contained in:
Takeshi KOMIYA
2016-03-03 12:46:22 +09:00
parent 62a96c1e2e
commit 04219fa045
2 changed files with 2 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ Bugs fixed
* Fix the confval type checker emits warnings if unicode is given to confvals which expects string value
* #2360: Fix numref in LaTeX output is broken
* #2361: Fix additional paragraphs inside the "compound" directive are indented
* #2364: Fix KeyError 'rootSymbol' on Sphinx upgrade from older version.
Documentation
-------------

View File

@@ -75,7 +75,7 @@ default_settings = {
# or changed to properly invalidate pickle files.
#
# NOTE: increase base version by 2 to have distinct numbers for Py2 and 3
ENV_VERSION = 46 + (sys.version_info[0] - 2)
ENV_VERSION = 47 + (sys.version_info[0] - 2)
dummy_reporter = Reporter('', 4, 4)