Geography: 8375 : Must test if kml file exists.

This commit is contained in:
SNoiraud 2015-07-30 10:06:55 +02:00
parent 03f890f4ad
commit defdec493e

View File

@ -805,7 +805,8 @@ class GeoGraphyView(OsmGps, NavigationView):
path = media_obj.get_path()
name, extension = os.path.splitext(path)
if extension == ".kml":
self.kml_layer.add_kml(path)
if os.path.isfile(path):
self.kml_layer.add_kml(path)
#-------------------------------------------------------------------------
#