Unwrap several for statements from 2to3 conversion process.

This commit is contained in:
Ryan Stein 2017-11-02 12:46:33 -04:00
parent 8c318c6d38
commit f2e800ddf1
22 changed files with 37 additions and 37 deletions

View file

@ -191,7 +191,7 @@ class Mssp(object):
self.mssp_table.update(MSSPTable_CUSTOM)
varlist = ''
for variable, value in list(self.mssp_table.items()):
for variable, value in self.mssp_table.items():
if callable(value):
value = value()
if utils.is_iter(value):