diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-01-31 01:34:12 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-01-31 01:59:37 +0900 |
commit | 7b4572a11608f71943f73698749ad5ed7037d91f (patch) | |
tree | 202b0d6d96c158b93563f1fa8cce3b5331826f20 /sphinx/ext/mathbase.py | |
parent | f766567e7574d07b530d1b6f17e022ad74aa7116 (diff) | |
download | sphinx-git-7b4572a11608f71943f73698749ad5ed7037d91f.tar.gz |
math: ValueError is raised on parallel build. (refs: #4526)
Diffstat (limited to 'sphinx/ext/mathbase.py')
-rw-r--r-- | sphinx/ext/mathbase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/mathbase.py b/sphinx/ext/mathbase.py index 8372c3ddd..514fcdaf3 100644 --- a/sphinx/ext/mathbase.py +++ b/sphinx/ext/mathbase.py @@ -68,7 +68,7 @@ class MathDomain(Domain): # type: (Iterable[unicode], Dict) -> None for labelid, (doc, eqno) in otherdata['objects'].items(): if doc in docnames: - self.data['objects'][labelid] = doc + self.data['objects'][labelid] = (doc, eqno) def resolve_xref(self, env, fromdocname, builder, typ, target, node, contnode): # type: (BuildEnvironment, unicode, Builder, unicode, unicode, nodes.Node, nodes.Node) -> nodes.Node # NOQA |