diff --git a/VERSION b/VERSION index 41d50d29..b4745176 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.19.0-develop72 +1.19.0-develop73 diff --git a/modules/config.py b/modules/config.py index 87394865..7085f3d9 100644 --- a/modules/config.py +++ b/modules/config.py @@ -296,7 +296,7 @@ class ConfigFile: check_next(d) else: for secret, secret_value in self.secrets.items(): - for test in [secret, secret.upper()]: + for test in [secret, secret.upper().replace("-", "_")]: if f"<<{test}>>" in str(next_data): return str(next_data).replace(f"<<{test}>>", secret_value) return next_data