Long/lat showing as None

svn: r15142
This commit is contained in:
Doug Blank 2010-04-15 10:53:22 +00:00
parent dfdda43ed7
commit 9445741cd1

View File

@ -2216,7 +2216,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 " "
)