Allow handler files to be empty lists.

pull/4420/head
Michael DeHaan 2013-01-27 10:40:29 -05:00
parent 12403abc2c
commit 0030a2bd09
1 changed files with 4 additions and 0 deletions

View File

@ -101,6 +101,10 @@ class Play(object):
''' handle task and handler include statements '''
results = []
if tasks is None:
# support empty handler files, and the like.
tasks = []
for x in tasks:
task_vars = self.vars.copy()
task_vars.update(vars)