diff --git a/json2kml.py b/json2kml.py index 1f30c0b..f0262f0 100644 --- a/json2kml.py +++ b/json2kml.py @@ -39,9 +39,9 @@ for place in data["features"]: if place["type"] == "Feature": try: - name = html.escape(place["properties"]["Title"]) + name = place["properties"]["Title"] except KeyError: - name = html.escape(place["properties"]["name"]) + name = place["properties"]["name"] print(f'Parsing place "{name}"') lon = place["geometry"]["coordinates"][0]