Compare commits

..

4 Commits

Author SHA1 Message Date
Mario de Frutos
b4dc616590 Merge pull request #432 from CartoDB/development
Release python library 0.16.1
2018-01-18 17:24:23 +01:00
Mario de Frutos
4f907053f5 Merge pull request #431 from CartoDB/430-Fixed_encoding_problems_with_mapbox_geocoding
Fixed encoding problem with Mapbox geocoding
2018-01-18 17:21:20 +01:00
Antonio
1a2785dff4 Version bumped 2018-01-18 15:21:06 +01:00
Antonio
d442fab9da Fixed encoding problem with Mapbox geocoding 2018-01-18 11:55:25 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ class MapboxGeocoder(Traceable):
country = [country] if country else None
try:
response = self._geocoder.forward(address=', '.join(address),
response = self._geocoder.forward(address=', '.join(address).decode('utf-8'),
country=country,
limit=1)

View File

@@ -10,7 +10,7 @@ from setuptools import setup, find_packages
setup(
name='cartodb_services',
version='0.16.0',
version='0.16.1',
description='CartoDB Services API Python Library',