From 01e3764a9b6ba902aea522bf6b7005fd37b3acbb Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 13 Aug 2021 16:03:46 -0700 Subject: [PATCH] fix join syntax --- jc/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/cli.py b/jc/cli.py index 9bd8f7ec..4876bd3c 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -551,7 +551,7 @@ def main(): try: run_command_str = shlex.join(run_command) # python 3.8+ except AttributeError: - run_command_str = join(run_command) # older python versions + run_command_str = ' '.join(run_command) # older python versions if valid_command: try: