From 021c18760bffaa9a05e76e864149cde42c058f3a Mon Sep 17 00:00:00 2001 From: Rudo Kemper Date: Sun, 22 Sep 2024 22:39:11 -0400 Subject: [PATCH] Move print command to end of convert method Signed-off-by: Rudo Kemper --- tools/python/google_maps_bookmarks.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/python/google_maps_bookmarks.py b/tools/python/google_maps_bookmarks.py index 46b5a85f4d..e7bccd7942 100755 --- a/tools/python/google_maps_bookmarks.py +++ b/tools/python/google_maps_bookmarks.py @@ -141,8 +141,6 @@ class GoogleMapsConverter: ET.SubElement(point, "coordinates").text = place['coordinates'] tree = ET.ElementTree(root) tree.write(self.output_file) - print() - print("Exported Google Saved Places to " + path.abspath(self.output_file)) def write_gpx(self): gpx = ET.Element("gpx", version="1.1", creator="GoogleMapsConverter") @@ -152,7 +150,6 @@ class GoogleMapsConverter: ET.SubElement(wpt, "desc").text = place['description'] tree = ET.ElementTree(gpx) tree.write(self.output_file) - print("Exported Google Saved Places to " + path.abspath(self.output_file)) def convert(self): with open(self.input_file, 'r') as file: @@ -179,6 +176,7 @@ class GoogleMapsConverter: self.write_kml() elif self.output_format == 'gpx': self.write_gpx() + print("Exported Google Saved Places to " + path.abspath(self.output_file)) if __name__ == "__main__": parser = argparse.ArgumentParser(description="Convert Google Maps saved places to KML or GPX.")