Long/lat showing as None

svn: r15141
This commit is contained in:
Doug Blank 2010-04-15 10:52:49 +00:00
parent 20a3958294
commit 82b7d8d168

View File

@ -2244,7 +2244,7 @@ class PlaceListPage(BasePage):
for colclass, data in [
["State", ml.state],
["Country", ml.country],
["Coordinates", (place.lat + ", " + place.long) if place.lat and place.long else None] ]
["Coordinates", (place.lat + ", " + place.long) if place.lat and place.long else " "] ]
if data or " "
)