From cfbe37a53551565ffd6fea11c3e50c10f7ab6df0 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Thu, 30 Aug 2018 16:34:48 -0400 Subject: [PATCH] Convert to just using straight key names as env var names --- atst/app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/atst/app.py b/atst/app.py index aa6a8158..e882c5cc 100644 --- a/atst/app.py +++ b/atst/app.py @@ -115,9 +115,8 @@ def make_config(): config.read(config_files) # Check for ENV variables as a final source of overrides - # ENV vars must be named "ATST_" for confsetting in config.options("default"): - env_override = os.getenv("ATST_" + confsetting.upper()) + env_override = os.getenv(confsetting.upper()) if env_override: config.set("default", confsetting, env_override)