mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-19 00:17:51 +02:00
fix join syntax
This commit is contained in:
@ -551,7 +551,7 @@ def main():
|
|||||||
try:
|
try:
|
||||||
run_command_str = shlex.join(run_command) # python 3.8+
|
run_command_str = shlex.join(run_command) # python 3.8+
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
run_command_str = join(run_command) # older python versions
|
run_command_str = ' '.join(run_command) # older python versions
|
||||||
|
|
||||||
if valid_command:
|
if valid_command:
|
||||||
try:
|
try:
|
||||||
|
Reference in New Issue
Block a user