taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 90a755454f40234dd59e26a71da6319fe0b3c7f2
parent dda363746407879d18bbaae92240853ea3451ebf
Author: Antoine A <>
Date:   Wed, 24 Apr 2024 11:28:06 +0900

Fix double export

Diffstat:
Mregional-currency/config.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/regional-currency/config.py b/regional-currency/config.py @@ -53,7 +53,7 @@ def add_conf(name: str, value: str): content = "" for key, value in conf.items(): escaped = value.replace("'", "'\\''") - content += f"export {key}='{escaped}'\n" + content += f"{key}='{escaped}'\n" with open(CONFIG_FILE, "w") as f: f.write(content)