From 9191f0e16bf00d138dab1e43b890b0e0b09fbb71 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Sun, 2 Aug 2026 00:05:38 +0900 Subject: [PATCH] line break for errors and not "," --- pyproject.toml | 4 ++-- src/reverse_geolocate/reverse_geolocate.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 80be021..c5b15f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "reverse-geolocate" -version = "1.1.2.1" +version = "1.1.2.2" description = "Reverse Geolocate from Lat/Long information and write location information into sidecard files" readme = "README.md" requires-python = ">=3.14" @@ -14,7 +14,7 @@ reverse-geolocate = "reverse_geolocate.reverse_geolocate:main" # MARK: build system [build-system] -requires = ["uv_build>=0.9.7,<0.10.0"] +requires = ["uv_build>=0.12.0,<0.13.0"] build-backend = "uv_build" # MARK: build target diff --git a/src/reverse_geolocate/reverse_geolocate.py b/src/reverse_geolocate/reverse_geolocate.py index e60db65..5f5ccc8 100755 --- a/src/reverse_geolocate/reverse_geolocate.py +++ b/src/reverse_geolocate/reverse_geolocate.py @@ -1402,7 +1402,7 @@ def main(): if len(failed_files) > 0: print("{}".format('-' * 40)) print("Files that failed to update:") - print("{}".format(', '.join(failed_files))) + print("{}".format("\n".join(failed_files))) if __name__ == "__main__":