From 4f29f098bc6a626a05d7ab9add59321a9dc1cd11 Mon Sep 17 00:00:00 2001 From: mpenning Date: Wed, 11 Oct 2023 07:22:39 -0500 Subject: [PATCH] Remove f-designator from string --- ciscoconfparse/ccp_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciscoconfparse/ccp_util.py b/ciscoconfparse/ccp_util.py index 754626a2..a783c71b 100644 --- a/ciscoconfparse/ccp_util.py +++ b/ciscoconfparse/ccp_util.py @@ -196,7 +196,7 @@ def run_this_posix_command(cmd, timeout=None, shell=False, cwd=None, encoding=lo elif env is None: pass # noqa else: - error = f"`env` must be None or a dict of variable names / values." + error = "`env` must be None or a dict of variable names / values." logger.critical(error) raise InvalidShellVariableMapping(error)