Skip to content

Commit 8dd17bc

Browse files
Fix minor styling issue in resolve_variables
Co-authored-by: bruntib <12861163+bruntib@users.noreply.github.com>
1 parent f45126b commit 8dd17bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/server/codechecker_server/session_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def resolve_variables(d):
444444
if secret_matched and var_name in secrets_dict:
445445
d[k] = secrets_dict[var_name]
446446
elif env_matched and var_name in os.environ:
447-
d[k] = os.environ.get(var_name)
447+
d[k] = os.environ[var_name]
448448
else:
449449
resolve_variables_failed(v)
450450

0 commit comments

Comments
 (0)