line break for errors and not ","

This commit is contained in:
2026-08-02 00:05:38 +09:00
parent 8e2414f2fd
commit 9191f0e16b
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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__":