mirror of https://github.com/ansible/ansible.git
fix: return a list, specifically (#54537)
tags.keys() returns a list of the keys, sure. But in Python 3 it's a "dict_keys" class, and BOTO is expecting a list. So let's make this work in Python 3. list(tags) returns a list of the keys in Python 2 and Python3. That seems to be what we want.pull/54587/head
parent
10a9cf59dd
commit
daca7fa584
Loading…
Reference in New Issue