From 39b9a65c76e408101680851403e7fcea360dd078 Mon Sep 17 00:00:00 2001 From: Salvoxia Date: Sat, 2 Mar 2024 19:56:18 +0100 Subject: [PATCH] Updated documentation of -s argument --- 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 6df36d0..27e1fc3 100644 --- a/immich_auto_album.py +++ b/immich_auto_album.py @@ -13,7 +13,7 @@ parser.add_argument("api_url", help="The root API URL of immich, e.g. https://im parser.add_argument("api_key", help="The Immich API Key to use") parser.add_argument("-u", "--unattended", action="store_true", help="Do not ask for user confirmation after identifying albums. Set this flag to run script as a cronjob.") parser.add_argument("-a", "--album-levels", default=1, type=int, help="Number of levels of sub-folder for which to create separate albums") -parser.add_argument("-s", "--album-separator", default=" ", type=str, help="Separator string to use for compound album names created from nested folders") +parser.add_argument("-s", "--album-separator", default=" ", type=str, help="Separator string to use for compound album names created from nested folders. Only effective if -a is set to a value > 1") parser.add_argument("-c", "--chunk-size", default=2000, type=int, help="Maximum number of assets to add to an album with a single API call") parser.add_argument("-C", "--fetch-chunk-size", default=5000, type=int, help="Maximum number of assets to fetch with a single API call") parser.add_argument("-l", "--log-level", default="INFO", choices=['CRITICAL', 'ERROR', 'WARNING', 'INFO', 'DEBUG'], help="Log level to use")