Skip to content

Commit

Permalink
Fix the fix for the regression from 3e0e828
Browse files Browse the repository at this point in the history
Third time's the charm?
  • Loading branch information
jtackaberry committed Jul 24, 2021
1 parent 64987a7 commit afe66e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ def _render_classmod(self, topref, out):
out('<td class="meta"></td>')
meta -= 1
ref.params, ref.returns, ref.md = self._content_to_markdown(ref.content)
md = self._get_first_sentence(md)[0] if not functions_compact else md
md = self._get_first_sentence(ref.md)[0] if not functions_compact else md
out('<td class="doc">{}</td>'.format(self._markdown_to_html(md)))
out('</tr>')
out('</table>')
Expand Down

0 comments on commit afe66e3

Please sign in to comment.