[1.3.x] Fixed #21869 -- Fixed docs building with Sphinx 1.2.1.

Thanks tragiclifestories for the report.

Backport of e1d18b9d2e from master
This commit is contained in:
Tim Graham 2014-01-24 08:52:43 -05:00
parent e982cbd4a1
commit 6726d75097
1 changed files with 4 additions and 2 deletions

View File

@ -136,11 +136,13 @@ class DjangoHTMLTranslator(SmartyPantsHTMLTranslator):
self.compact_p = self.context.pop()
self.body.append('</table>\n')
# <big>? Really?
def visit_desc_parameterlist(self, node):
self.body.append('(')
self.body.append('(') # by default sphinx puts <big> around the "("
self.first_param = 1
self.optional_param_level = 0
self.param_separator = node.child_text_separator
self.required_params_left = sum([isinstance(c, addnodes.desc_parameter)
for c in node.children])
def depart_desc_parameterlist(self, node):
self.body.append(')')