mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Fix Dyn python3 error with dict_values that needed a list
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user