mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2026-09-03 20:52:55 -05:00
Fix automethod outside class context.
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
Release 0.5.1 (in development)
|
||||
==============================
|
||||
|
||||
* Fix autodoc crash when automethod is used outside a class context.
|
||||
|
||||
* Fix LaTeX writer output for images with specified height.
|
||||
|
||||
* Fix wrong generated image path when including images in sources
|
||||
|
||||
@@ -321,6 +321,9 @@ class RstGenerator(object):
|
||||
# ... or from a class directive
|
||||
if mod_cls is None:
|
||||
mod_cls = self.env.currclass
|
||||
# ... if still None, there's no way to know
|
||||
if mod_cls is None:
|
||||
return fullname, None, [], args, retann
|
||||
mod, cls = rpartition(mod_cls, '.')
|
||||
# if the module name is still missing, get it like above
|
||||
if not mod and hasattr(self.env, 'autodoc_current_module'):
|
||||
|
||||
Reference in New Issue
Block a user