fix(proxy): word the config step so it also fits a config that already reads the environment

This commit is contained in:
ryan-crabbe-berri 2026-09-19 13:45:11 -07:00
parent fe480533e8
commit 0415382f9e

View file

@ -211,7 +211,7 @@ def _fix_steps(source: MasterKeySource) -> str:
match source:
case ConfigFileSource():
return (
f"1. Make {_config_label(source)} read the key from the environment:\n"
f"1. Make sure {_config_label(source)} reads the key from the environment:\n"
f" general_settings:\n {MASTER_KEY_SETTING}: os.environ/{MASTER_KEY_ENV_VAR}\n"
f"2. {_SAVE_KEY_STEP}"
)