mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
#2364: Fix KeyError rootSymbol on Sphinx upgrade from older version.
This commit is contained in:
1
CHANGES
1
CHANGES
@@ -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
|
||||
-------------
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user