From 4805fa6b0b2f77d10ad886a861fddaca84795c3d Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 4 Mar 2015 09:39:06 -0500 Subject: [PATCH] fix ansible-doc listing with new docstring fixes #10295 --- bin/ansible-doc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ansible-doc b/bin/ansible-doc index 3447f9d0904..dff7cecce79 100755 --- a/bin/ansible-doc +++ b/bin/ansible-doc @@ -197,7 +197,7 @@ def get_module_list_text(module_list): continue try: - doc, plainexamples = module_docs.get_docstring(filename) + doc, plainexamples, returndocs = module_docs.get_docstring(filename) desc = tty_ify(doc.get('short_description', '?')).strip() if len(desc) > linelimit: desc = desc[:linelimit] + '...'