Merge pull request #369 from CartoDB/setted-does-not-exist

Fixed bad spelling of past participle of verb set in NEWS and error messages
This commit is contained in:
Mario de Frutos
2017-05-24 15:47:52 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -159,7 +159,7 @@ July 25, 2016
===========
* Release server 0.13.3
* Add provider per service
* Default provider in case the provider is not setted
* Default provider in case the provider is not set
* Refactor and improvements in the multiprovider services functions
https://github.com/CartoDB/dataservices-api/releases/tag/0.13.3-server
@@ -475,7 +475,7 @@ https://github.com/CartoDB/dataservices-api/releases/tag/0.3.0-server
Feb 4, 2016:
===========
* Release server 0.2.0
* Logic for the google geocoder so the users with this geocoder setted up can use street level geocoding too
* Logic for the google geocoder so the users with this geocoder set up can use street level geocoding too
* Refactor of the python library in order to reflect the change to a services extension more than only geocoder
https://github.com/CartoDB/dataservices-api/releases/tag/0.2.0-server

View File

@@ -365,7 +365,7 @@ class GeocoderConfig(ServiceConfig):
raise ConfigException("""Google geocoder need the mandatory parameter 'google_maps_private_key'""")
elif self._geocoder_provider == self.MAPZEN_GEOCODER:
if not self.mapzen_api_key:
raise ConfigException("""Mapzen config is not setted up""")
raise ConfigException("""Mapzen config is not set up""")
return True