fix Obstacle height in packageio

This commit is contained in:
Laura Klünder 2016-11-28 16:33:31 +01:00
parent ad0037c867
commit 38a4ec16d0

View file

@ -134,7 +134,7 @@ class Obstacle(GeometryMapItem):
def tofile(self):
result = super().tofile()
if self.height is not None:
result['height'] = float(self.level.name)
result['height'] = float(self.height)
return result