Browse Source

DynProvider Traffic Directors want lowercase province without country

pull/16/head
Ross McFarland 9 years ago
parent
commit
20351ba442
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      octodns/provider/dyn.py

+ 1
- 2
octodns/provider/dyn.py View File

@ -531,8 +531,7 @@ class DynProvider(BaseProvider):
for _, geo in geos:
if geo.subdivision_code:
criteria = {
'country': geo.country_code,
'province': geo.subdivision_code
'province': geo.subdivision_code.lower()
}
elif geo.country_code:
criteria = {


Loading…
Cancel
Save