PY3 : Replice dict.iteritems() with dict.items()

py3 tests for cyborg are failing due to
dict.iteritems() which has been removed in python 3 [1].
This patch replaces that usage with dict.items,
which also works in python 2.7, as recommended.

[1] https://wiki.python.org/moin/Python3.0#Built-In_Changes

Change-Id: Ic23c0c09b346cb59344828e8189036306072e040
This commit is contained in:
whoami-rajat 2018-10-19 22:31:07 +05:30
parent 156c9f18e5
commit a58e893654
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ class Connection(api.Connection):
'accelerator_id']
attribute_filters = {}
filters_copy = copy.deepcopy(filters)
for key, value in filters_copy.iteritems():
for key, value in filters_copy.items():
if key not in exact_match_filter_names:
# This key is not in the deployable regular fields
value = filters.pop(key)