Run 2to3.

This commit is contained in:
Ryan Stein 2017-10-29 13:40:30 -04:00
parent a5a8d9dd57
commit 6fa280b9fd
157 changed files with 976 additions and 976 deletions

View file

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