From 9445741cd192d6ff9605151fb0fb4c4952651b57 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Thu, 15 Apr 2010 10:53:22 +0000 Subject: [PATCH] Long/lat showing as None svn: r15142 --- src/plugins/webreport/NarrativeWeb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index a62f3e44a..91196769d 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -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 " " )