summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Bogorodskiy <bogorodskiy@gmail.com>2015-06-15 14:07:26 +0400
committerRoman Bogorodskiy <bogorodskiy@gmail.com>2015-06-15 14:07:26 +0400
commite179e6b8da1f0f889e29920e1085559287269d04 (patch)
tree0147ffe6f9ddc04b96a1c9a670cb1ac67c8e1172
parentf3753b00ce00c506e2a8b4a49755c399c8d1cae2 (diff)
downloadtox-e179e6b8da1f0f889e29920e1085559287269d04.tar.gz
Fix typo in exception string
s/unkown/unknown/
-rw-r--r--tox/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox/config.py b/tox/config.py
index 42922e3..52e0dbc 100644
--- a/tox/config.py
+++ b/tox/config.py
@@ -909,7 +909,7 @@ class SectionReader:
if envkey not in os.environ and default is None:
raise tox.exception.ConfigError(
- "substitution env:%r: unkown environment variable %r" %
+ "substitution env:%r: unknown environment variable %r" %
(envkey, envkey))
return os.environ.get(envkey, default)