Compress the playbook format for readability

This commit is contained in:
Michael DeHaan 2012-02-05 12:52:07 -05:00
parent b053df4182
commit 6d0fd2bfde
2 changed files with 10 additions and 15 deletions

View file

@ -110,7 +110,8 @@ class PlayBook(object):
host_list = self.host_list
instructions = task['do']
(comment, module_name, module_args) = instructions
(comment, module_details) = instructions
(module_name, module_args) = module_details
namestr = "%s/%s" % (pattern, comment)
if conditional: