From 82b7d8d16814d02918c678caa9c182cada7f71df Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Thu, 15 Apr 2010 10:52:49 +0000 Subject: [PATCH] Long/lat showing as None svn: r15141 --- 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 e7aec8e04..1b655ea83 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -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 " " )