Skip to content

Commit fe8566b

Browse files
committed
Another logging bug
1 parent 421d6aa commit fe8566b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python_batch_geocoding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def get_google_results(address, api_key=None, return_full_response=False):
160160
# Note that the results might be empty / non-ok - log this
161161
if geocode_result['status'] != 'OK':
162162
logger.warning("Error geocoding {}: {}".format(address, geocode_result['status']))
163-
logger.info("Geocoded: {}: ".format(address, geocode_result['status']))
163+
logger.info("Geocoded: {}: {}".format(address, geocode_result['status']))
164164
results.append(geocode_result)
165165
geocoded = True
166166

0 commit comments

Comments
 (0)