From 4d6682bc70a1322db0d545138d60f6d0930d2e47 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 19 Nov 2024 19:27:16 +0100 Subject: [PATCH] update: fix _strip_and_copy_image to work with pathlib --- fdroidserver/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/update.py b/fdroidserver/update.py index c561199a..7d443747 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -803,7 +803,7 @@ def _strip_and_copy_image(in_file, outpath): Potential source of Python code to strip JPEGs without dependencies: http://www.fetidcascade.com/public/minimal_exif_writer.py """ - logging.debug('copying ' + in_file + ' ' + outpath) + logging.debug('copying %s %s', in_file, outpath) if not os.path.exists(in_file): if os.path.islink(in_file):