From a9fcf680b08f17791cf7c04489189d8077ffdf76 Mon Sep 17 00:00:00 2001 From: lars Date: Fri, 21 Aug 2009 11:15:20 +0000 Subject: [PATCH] OSM scripts: * use "comment" instead of "note" for describing the changeset --- osm/rostock_import_height_2009/add_height.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm/rostock_import_height_2009/add_height.py b/osm/rostock_import_height_2009/add_height.py index acdbfdd..e2702ec 100755 --- a/osm/rostock_import_height_2009/add_height.py +++ b/osm/rostock_import_height_2009/add_height.py @@ -102,7 +102,7 @@ def update_way(way, height): return way def send_changeset(api, changes): - api.ChangesetCreate({u"note": u"Importing heights of houses from KVL Rostock"}) + api.ChangesetCreate({u"comment": u"Importing heights of houses from KVL Rostock"}) for change in changes: api.WayUpdate(change) api.ChangesetClose()