Fix KML for new GE which is more space-sensitive than old GE

This commit is contained in:
Nick Foster
2012-06-14 18:14:53 -07:00
parent e709cd4ca0
commit fc4ee50a88
2 changed files with 5 additions and 3 deletions

View File

@@ -116,7 +116,7 @@ class modes_kml(threading.Thread, modes_output_sql):
trackstr = ""
for pos in track:
trackstr += " %f, %f, %f" % (pos[4], pos[3], pos[2]*0.3048)
trackstr += " %f,%f,%f" % (pos[4], pos[3], pos[2]*0.3048)
trackstr = string.lstrip(trackstr)
else: