DynProvider Traffic Directors want lowercase province without country

This commit is contained in:
Ross McFarland
2017-04-13 08:43:02 -07:00
parent 08d8009b14
commit 20351ba442
+1 -2
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 = {