From d3a1fc21238a8661ead3b3445890a4e39e61a13d Mon Sep 17 00:00:00 2001 From: Komzpa Date: Tue, 5 Jun 2012 22:46:57 +0300 Subject: [PATCH] typo fix --- src/komap.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/komap.py b/src/komap.py index acd446b..faefa34 100644 --- a/src/komap.py +++ b/src/komap.py @@ -678,13 +678,11 @@ if options.renderer == "mapnik": height=entry["style"].get("icon-height", ""), opacity=relaxedFloat(entry["style"].get("opacity", "1"))) if ("text" in entry["style"] and entry["style"].get("text-position","center")=='center'): - - ttext = entry["style"]["text"].extract_tags().pop() - sql.add("(("+entry["sql"]+") and "+columnmap.get(ttext, (escape_sql_column(ttext),))[0] + " is NULL)") + sql.add("(("+entry["sql"]+") and "+columnmap.get(ttext, (ttext,))[0] + " is NULL)") itags.update((escape_sql_column(ttext),)) if ttext in columnmap: - itags.update((columnmap[ttext][1],)) + itags.update(columnmap[ttext][1]) else: sql.add(entry["sql"])