Skip to content

Commit

Permalink
MAINT: More explicit call while building docstrings.
Browse files Browse the repository at this point in the history
  • Loading branch information
chebee7i committed Jan 12, 2015
1 parent 8199426 commit 736951e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpydoc/docscrape_sphinx.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def __str__(self, indent=0, func_role="obj"):
out += self._str_summary()
out += self._str_extended_summary()
out += self._str_param_list('Parameters')
out += self._str_returns()
out += self._str_returns('Returns')
out += self._str_returns('Yields')
for param_list in ('Other Parameters', 'Raises', 'Warns'):
out += self._str_param_list(param_list)
Expand Down

0 comments on commit 736951e

Please sign in to comment.