Fix environement variable extraction

This commit is contained in:
VALLEY Antoine (T0173847) 2019-07-24 09:32:29 +02:00
parent 54c4cede32
commit bec593bf40

View file

@ -264,10 +264,10 @@ class PortainerCLI(object):
lambda x: re.match(env_arg_regex, x),
args,
)
env = dict(map(
lambda x: env_arg_to_dict(x),
env_args,
))
env = dict(map(
lambda x: env_arg_to_dict(x),
env_args,
))
return env
@plac.annotations(