From f79cfe42aac5f5cef8865f7a6975f6a430c923a1 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Wed, 15 Apr 2020 23:12:18 -0700 Subject: Use python format strings for args.then --- Que/client.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'Que/client.py') diff --git a/Que/client.py b/Que/client.py index f4ee601..1063eb8 100755 --- a/Que/client.py +++ b/Que/client.py @@ -96,9 +96,7 @@ def then(args, msg): if args.then: logging.debug("then") subprocess.run( - args.then.replace(r"\msg", msg).replace(r"\que", args.target), - check=False, - shell=True, + args.then.format(msg=msg, que=args.target), check=False, shell=True, ) @@ -144,7 +142,7 @@ def get_args(): [ "when polling, run this shell command after each response,", "presumably for side effects," - r"replacing '\que' with the target and '\msg' with the body of the response", + r"replacing '{que}' with the target and '{msg}' with the body of the response", ] ), ) -- cgit v1.2.3