mirror of
https://github.com/docker/compose.git
synced 2026-07-11 02:34:25 +00:00
Fix typo in 'split_env' error message
Signed-off-by: Klaas Hoekema <khoekema@azavea.com>
This commit is contained in:
parent
35eb40424c
commit
088a798e7a
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ def split_env(env):
|
|||
key = env
|
||||
if re.search(r'\s', key):
|
||||
raise ConfigurationError(
|
||||
"environment variable name '{}' may not contains whitespace.".format(key)
|
||||
"environment variable name '{}' may not contain whitespace.".format(key)
|
||||
)
|
||||
return key, value
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue