From 677ce7ff2821a01f46b0642e2552438e6f0ad17c Mon Sep 17 00:00:00 2001 From: MSP Date: Sat, 4 Jan 2025 18:21:58 +0000 Subject: [PATCH] * Error in Tests: [Fatal Python error: Segmentation fault](https://github.com/RhetTbull/osxphotos/actions/runs/12612637331/job/35149593923#step:9:261) * Unable to re-run Tests up-stream :( * Adjusting some long lines and forcing commit! --- osxphotos/cli/export.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/osxphotos/cli/export.py b/osxphotos/cli/export.py index 1aa3c5cb..8ce34dfa 100644 --- a/osxphotos/cli/export.py +++ b/osxphotos/cli/export.py @@ -1744,12 +1744,15 @@ def export_cli( if not no_exportdb and exportdb and exportdb != str(expected_exportdb): if expected_exportdb.exists(): rich_click_echo( - f"[warning]Warning: export database is '{exportdb}' but found '{OSXPHOTOS_EXPORT_DB}' in {dest}; using '{exportdb}'", + f"[warning]Warning: export database is '{exportdb}' but found " + f"'{OSXPHOTOS_EXPORT_DB}' in {dest}; using '{exportdb}'", err=True, ) if pathlib.Path(exportdb).resolve().parent != pathlib.Path(dest): rich_click_echo( - f"[warning]Warning: export database '{pathlib.Path(exportdb).resolve()}' is in a different directory than export destination '{dest}'", + f"[warning]Warning: export database " + f"'{pathlib.Path(exportdb).resolve()}' is in a different " + f"directory than export destination '{dest}'", err=True, )