diff options
author | jfbu <jfbu@free.fr> | 2018-01-20 10:38:03 +0100 |
---|---|---|
committer | jfbu <jfbu@free.fr> | 2018-01-20 10:38:03 +0100 |
commit | 02ee4ec86bb57e04d0d753ade05669880ca19811 (patch) | |
tree | 71f8a036e636aa4a6a749609f785953766a50eba /sphinx/ext/mathbase.py | |
parent | e8da18d88dc38deca12725b69e248c0c51b3d9a3 (diff) | |
parent | d3058f462de8abc514e662270d3df62b08f953f9 (diff) | |
download | sphinx-git-02ee4ec86bb57e04d0d753ade05669880ca19811.tar.gz |
Merge branch 'stable' into 1.7-release
Diffstat (limited to 'sphinx/ext/mathbase.py')
-rw-r--r-- | sphinx/ext/mathbase.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sphinx/ext/mathbase.py b/sphinx/ext/mathbase.py index d9bc3726b..f773c0d24 100644 --- a/sphinx/ext/mathbase.py +++ b/sphinx/ext/mathbase.py @@ -56,8 +56,7 @@ class MathDomain(Domain): label = 'mathematics' initial_data = { - 'nameids': {}, # label -> equation ID - 'objects': {}, # equation ID -> (docname, eqno) + 'objects': {}, # labelid -> (docname, eqno) } # type: Dict[unicode, Dict[unicode, Tuple[unicode, int]]] dangling_warnings = { 'eq': 'equation not found: %(target)s', |