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

This commit is contained in:
Zuul 2018-10-24 04:59:36 +00:00 committed by Gerrit Code Review
commit 0ae630b69b
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)