Fix Dyn python3 error with dict_values that needed a list

This commit is contained in:
Ross McFarland
2020-05-08 08:14:28 -07:00
parent b9575ae484
commit 8648fed190
+1 -1
View File
@@ -1141,7 +1141,7 @@ class DynProvider(BaseProvider):
pools[rpid] = get_response_pool(rpid, td)
# now that we have full objects for the complete set of existing pools,
# a list will be more useful
pools = pools.values()
pools = list(pools.values())
# Rulesets