summaryrefslogtreecommitdiff
path: root/ch1p/functions.py
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2021-04-25 23:40:17 +0300
committerEvgeny Zinoviev <me@ch1p.io>2021-04-25 23:40:17 +0300
commitbd28b0613e820f9fdd83847704ae5897bf7a7139 (patch)
tree0e97717277e22e60050adf1f5d4569cdbb6906e8 /ch1p/functions.py
parentb84537af0c547fa058ed1c5af25475dce4821f0d (diff)
mostly State updates
Diffstat (limited to 'ch1p/functions.py')
-rw-r--r--ch1p/functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ch1p/functions.py b/ch1p/functions.py
index cf75221..7cc2a10 100644
--- a/ch1p/functions.py
+++ b/ch1p/functions.py
@@ -13,7 +13,7 @@ def _get_vars(params: List[Tuple], kw: dict) -> List[AnyStr]:
elif env_name in os.environ:
result.append(os.environ[env_name])
else:
- raise RuntimeError("missing parameter %s or variable %s" % (kw_name, env_name))
+ raise RuntimeError("missing parameter '%s' or variable '%s'" % (kw_name, env_name))
return result