Skip to content

Commit d1c962a

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Remove remaining use of iteritems"
2 parents eb9ad86 + 958b78b commit d1c962a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloudkitty/writer/csv_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def _process_data(self, context, report_data):
231231
self._init_headers()
232232

233233
formated_data = []
234-
for base, mapped in self._field_map.iteritems():
234+
for base, mapped in self._field_map.items():
235235
final_data = ''
236236
if isinstance(mapped, str):
237237
mapped_section, mapped_field = mapped.rsplit(':', 1)

0 commit comments

Comments
 (0)