From bd28b0613e820f9fdd83847704ae5897bf7a7139 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Sun, 25 Apr 2021 23:40:17 +0300 Subject: mostly State updates --- ch1p/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ch1p/functions.py') 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 -- cgit v1.2.3