summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
authorMichael DeHaan <michael@ansibleworks.com>2013-04-12 17:41:16 -0400
committerMichael DeHaan <michael@ansibleworks.com>2013-04-12 17:45:27 -0400
commit148d8859ba67687ce2d3a1b39228453ea8bc42ba (patch)
tree4bb999befd7bf8dfc7f601856297e702e62d1ea6 /hacking
parent7037023aa8050dc274f88c0865a40b743e152d94 (diff)
downloadansible-148d8859ba67687ce2d3a1b39228453ea8bc42ba.tar.gz
Docs on parameterized roles, make document generation output less noisy
Diffstat (limited to 'hacking')
-rwxr-xr-xhacking/module_formatter.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/hacking/module_formatter.py b/hacking/module_formatter.py
index 88540d24f2..ebf7381908 100755
--- a/hacking/module_formatter.py
+++ b/hacking/module_formatter.py
@@ -286,7 +286,7 @@ def main():
if fname.endswith(".swp") or fname.endswith(".orig") or fname.endswith(".rej"):
continue
- print " processing module source ---> %s" % fname
+ # print " processing module source ---> %s" % fname
if options.type == 'js':
if fname.endswith(".json"):
@@ -299,6 +299,7 @@ def main():
doc, examples = ansible.utils.module_docs.get_docstring(fname, verbose=options.verbose)
if doc is None and module not in ansible.utils.module_docs.BLACKLIST_MODULES:
+ print " while processing module source ---> %s" % fname
sys.stderr.write("*** ERROR: CORE MODULE MISSING DOCUMENTATION: %s ***\n" % module)
#sys.exit(1)