Use .items() not .iteritems()
This commit is contained in:
parent
87752457a3
commit
c0afcfade5
@ -489,7 +489,7 @@ class OutputMap(collections.Mapping):
|
||||
def exports(self):
|
||||
exports = []
|
||||
if self.outputs:
|
||||
for key, value in self._output_json_map.iteritems():
|
||||
for key, value in self._output_json_map.items():
|
||||
if value.get('Export'):
|
||||
exports.append(Export(self._stack_id, value['Export'].get('Name'), value.get('Value')))
|
||||
return exports
|
||||
|
Loading…
Reference in New Issue
Block a user