fix: updates a message

This commit is contained in:
ievgenii vdovenko 2025-08-13 20:30:34 +02:00
parent 5d31c3bd2e
commit 7d18d793bf

View file

@ -47,7 +47,11 @@ def initialize_ini_config_default_values_if_not_present(
return
if not os.access(ini_path, os.W_OK):
log.warning("Cannot write to config file '%s'; skipping update.", ini_path)
log.warning(
"Cannot save value for %s, reason: cannot write to config file '%s' due to lack of permissions.",
option,
ini_path,
)
return
updater = ConfigUpdater()