From f533f6603cc19aac587d9e87a3a08c0f0a5bbc98 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 19 Dec 2016 14:48:03 -0500 Subject: [PATCH] show filename for module --- lib/ansible/cli/doc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/cli/doc.py b/lib/ansible/cli/doc.py index d61cdb7eb1..a44c183ee4 100644 --- a/lib/ansible/cli/doc.py +++ b/lib/ansible/cli/doc.py @@ -253,7 +253,7 @@ class DocCLI(CLI): opt_indent=" " text = [] - text.append("> %s\n" % doc['module'].upper()) + text.append("> %s (%s)\n" % (doc['module'].upper(), doc['filename'])) pad = display.columns * 0.20 limit = max(display.columns - int(pad), 70)