mirror of https://github.com/docker/compose.git
Fix typo in 'split_env' error message
Signed-off-by: Klaas Hoekema <khoekema@azavea.com>
This commit is contained in:
parent
35eb40424c
commit
088a798e7a
|
@ -26,7 +26,7 @@ def split_env(env):
|
||||||
key = env
|
key = env
|
||||||
if re.search(r'\s', key):
|
if re.search(r'\s', key):
|
||||||
raise ConfigurationError(
|
raise ConfigurationError(
|
||||||
"environment variable name '{}' may not contains whitespace.".format(key)
|
"environment variable name '{}' may not contain whitespace.".format(key)
|
||||||
)
|
)
|
||||||
return key, value
|
return key, value
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue