mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2026-09-03 20:52:55 -05:00
Fix an AttributeError for strange xref nodes.
This commit is contained in:
@@ -1058,7 +1058,8 @@ class LaTeXTranslator(nodes.NodeVisitor):
|
||||
# reference to a label
|
||||
id = uri[1:].replace('#', ':')
|
||||
self.body.append(self.hyperlink(id))
|
||||
if len(node) and 'std-term' in node[0].get('classes', []):
|
||||
if len(node) and hasattr(node[0], 'attributes') and \
|
||||
'std-term' in node[0].get('classes', []):
|
||||
# don't add a pageref for glossary terms
|
||||
self.context.append('}')
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user