[mod] return empty string on missing osm title

Sometimes openstreetmap returns with None as title. In these cases use an empty
string instead.
This commit is contained in:
Adam Tauber 2016-12-09 19:52:49 +01:00
parent 8116e341cc
commit 72a217f983
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def response(resp):
if 'display_name' not in r:
continue
title = r['display_name']
title = r['display_name'] or u''
osm_type = r.get('osm_type', r.get('type'))
url = result_base_url.format(osm_type=osm_type,
osm_id=r['osm_id'])