Browse Source

Fix Dyn python3 error with dict_values that needed a list

pull/541/head
Ross McFarland 6 years ago
parent
commit
8648fed190
No known key found for this signature in database GPG Key ID: 61C10C4FC8FE4A89
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/dyn.py

+ 1
- 1
octodns/provider/dyn.py 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


Loading…
Cancel
Save