We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2e47ce commit 2fb4761Copy full SHA for 2fb4761
skipper/config.py
@@ -36,7 +36,7 @@ def _normalize_config(config, normalized_config):
36
37
def _interpolate_env_vars(key):
38
for match in findall(r'\$\(.+\)', key):
39
- output = check_output("echo " + match, shell=True).strip()
+ output = check_output("echo " + match, shell=True).strip().decode("utf-8")
40
if not output:
41
raise ValueError(match)
42
key = key.replace(match, output)
0 commit comments