Fix 'ansible-doc -l' runtime error following commit 4430d0f
skip "module" not found as plugin, id est directory
This commit is contained in:
parent
f9ac88c9da
commit
c7217a8f1b
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ def main():
|
|||
continue
|
||||
|
||||
filename = utils.plugins.module_finder.find_plugin(module)
|
||||
if os.path.isdir(filename):
|
||||
if filename is None:
|
||||
continue
|
||||
try:
|
||||
doc, plainexamples = module_docs.get_docstring(filename)
|
||||
|
|
Loading…
Reference in a new issue