1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Avoid multiple blank lines with --syntax-check

Only print a blank line between plays when also doing --list-hosts and/or
  --list-tasks, otherwise this output just a long list of blank lines, one for
  each play.
This commit is contained in:
Serge van Ginderachter 2014-08-22 15:32:08 +02:00
parent 8e0af04c3b
commit ad3d3c7379

View file

@ -247,7 +247,8 @@ def main(args):
if getattr(task, 'name', None) is not None:
# meta tasks have no names
print ' %s' % task.name
print ''
if options.listhosts or options.listtasks:
print ''
continue
if options.syntax: