Fix typo in 'split_env' error message

Signed-off-by: Klaas Hoekema <khoekema@azavea.com>
This commit is contained in:
Klaas Hoekema 2019-07-11 23:27:11 -04:00
parent 35eb40424c
commit 088a798e7a
1 changed files with 1 additions and 1 deletions

View File

@ -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