OSM scripts:

* use "comment" instead of "note" for describing the changeset
This commit is contained in:
lars 2009-08-21 11:15:20 +00:00
parent a99914e7c2
commit a9fcf680b0

View file

@ -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()