Fix bug in environment gathering on the master

This commit is contained in:
Thomas S Hatch 2013-01-01 13:31:35 -07:00
parent 19fbdde46a
commit bf4501c1bd

View File

@ -667,8 +667,8 @@ class AESFuncs(object):
mopts = dict(self.opts)
file_roots = dict(mopts['file_roots'])
envs = self._file_envs()
for env in file_roots:
if not env in envs:
for env in envs:
if not env in file_roots:
file_roots[env] = []
mopts['file_roots'] = file_roots
return mopts