[fix] return empty list for languages in country_and_languages

This commit is contained in:
Al
2016-10-07 18:57:22 -04:00
parent 29698781cb
commit 30074524d8

View File

@@ -474,7 +474,7 @@ class OSMCountryReverseGeocoder(OSMReverseGeocoder):
if country: if country:
break break
else: else:
return None, None return None, []
country = country.lower() country = country.lower()