diff options
author | Tim Graham <timograham@gmail.com> | 2014-01-24 08:52:43 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2014-01-24 08:52:43 -0500 |
commit | e1d18b9d2e8ac292940f070b0a8cb9733756acd9 (patch) | |
tree | 106023dd6a47be3f513a489496e85c1516dee9c9 /docs/_ext/djangodocs.py | |
parent | 4d8209431d2b1c97d86cf92992e6ddc1555c7ac7 (diff) | |
download | django-e1d18b9d2e8ac292940f070b0a8cb9733756acd9.tar.gz |
Fixed #21869 -- Fixed docs building with Sphinx 1.2.1.
Thanks tragiclifestories for the report.
Diffstat (limited to 'docs/_ext/djangodocs.py')
-rw-r--r-- | docs/_ext/djangodocs.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/_ext/djangodocs.py b/docs/_ext/djangodocs.py index 7c46f3287f..0a134e775f 100644 --- a/docs/_ext/djangodocs.py +++ b/docs/_ext/djangodocs.py @@ -236,11 +236,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(')') |