From 19b8018e0c8e42a561dcd4130de70b5f0bb2defc Mon Sep 17 00:00:00 2001 From: Salvoxia Date: Sun, 3 Mar 2024 18:52:22 +0100 Subject: [PATCH] Fixed copy/paste mistake in debug output --- immich_auto_album.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/immich_auto_album.py b/immich_auto_album.py index fde3bb2..0b39a1a 100644 --- a/immich_auto_album.py +++ b/immich_auto_album.py @@ -32,7 +32,7 @@ unattended = args["unattended"] album_levels = args["album_levels"] album_level_separator = args["album_separator"] logging.debug("root_path = %s", root_path) -logging.debug("root_url = %s", root_path) +logging.debug("root_url = %s", root_url) logging.debug("api_key = %s", api_key) logging.debug("number_of_images_per_request = %d", number_of_images_per_request) logging.debug("number_of_assets_to_fetch_per_request = %d", number_of_assets_to_fetch_per_request)