Merge pull request #4548 from stoned/ansible-doc-fix
Fix 'ansible-doc -l' runtime error following commit 4430d0f
This commit is contained in:
commit
8a3f222d41
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ def main():
|
||||||
continue
|
continue
|
||||||
|
|
||||||
filename = utils.plugins.module_finder.find_plugin(module)
|
filename = utils.plugins.module_finder.find_plugin(module)
|
||||||
if os.path.isdir(filename):
|
if filename is None:
|
||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
doc, plainexamples = module_docs.get_docstring(filename)
|
doc, plainexamples = module_docs.get_docstring(filename)
|
||||||
|
|
Loading…
Add table
Reference in a new issue