cleanup Example output in ansible-doc

pull/1774/head
Jan-Piet Mens 12 years ago
parent f2893b6418
commit 52a55a3575

@ -89,8 +89,10 @@ def print_man(doc):
subsequent_indent=opt_indent)
for ex in doc['examples']:
print "%s%s" % (opt_indent, ex['code'])
if 'examples' in doc and len(doc['examples']) > 0:
print "Example%s:\n" % ('' if len(doc['examples']) < 2 else 's')
for ex in doc['examples']:
print "%s\n" % (ex['code'])
def print_snippet(doc):

Loading…
Cancel
Save