Geography : bug 8499 : follow fix a bad copy/past

This commit is contained in:
SNoiraud 2015-04-18 11:53:17 +02:00 committed by Ross Gammon
parent 42e52f9d3e
commit d2a49ffb98

View File

@ -221,8 +221,8 @@ class Kml(GObject.GObject):
for subAttribute in attributes:
if subAttribute.tag == self.tag + 'name':
self.name = subAttribute.text
if subsubAttribute.tag == self.tag + 'Point':
self.get_point(subsubAttribute)
if subAttribute.tag == self.tag + 'Point':
self.get_point(subAttribute)
self.markers.append((self.name, self.points))
return self.markers