From a1eb612a0895813fb4d8a6b7dc1083e56bd9659d Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Thu, 15 May 2025 08:02:37 +0800 Subject: [PATCH] Fix incorrect option names in config normalize warning message. --- borgmatic/config/normalize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgmatic/config/normalize.py b/borgmatic/config/normalize.py index f78ed82c..f03ee406 100644 --- a/borgmatic/config/normalize.py +++ b/borgmatic/config/normalize.py @@ -159,7 +159,7 @@ def normalize(config_filename, config): dict( levelno=logging.WARNING, levelname='WARNING', - msg=f'{config_filename}: The borgmatic_source_directory option is deprecated and will be removed from a future release. Use borgmatic_runtime_directory and borgmatic_state_directory instead.', + msg=f'{config_filename}: The borgmatic_source_directory option is deprecated and will be removed from a future release. Use user_runtime_directory and user_state_directory instead.', ) ) )