1
0
Эх сурвалжийг харах

Fix typo in 'split_env' error message

Signed-off-by: Klaas Hoekema <[email protected]>
Klaas Hoekema 6 жил өмнө
parent
commit
088a798e7a

+ 1 - 1
compose/config/environment.py

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