Codebase list docker-compose / 088a798
Fix typo in 'split_env' error message Signed-off-by: Klaas Hoekema <khoekema@azavea.com> Klaas Hoekema 4 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
2525 key = env
2626 if re.search(r'\s', key):
2727 raise ConfigurationError(
28 "environment variable name '{}' may not contains whitespace.".format(key)
28 "environment variable name '{}' may not contain whitespace.".format(key)
2929 )
3030 return key, value
3131